c# pictureBox,动态图像,正常工作正常
我有一个简单的问题,我无法弄清楚发生了什么,我之前已经使用相同的 url 结构将生成的图像加载到图片框中,没有任何问题,下面的 url 是我的图像的位置,但是当我尝试 picturebox1. load(url) 它加载它显然没有问题,但图像框没有显示图像,尝试块显示它工作正常。
如果我浏览到图像显示的 url,如果我使用 html 显示以 url 作为 src 的图像,它也可以正常工作...
我在这里缺少什么?
图片位置为:
代码:
pictureBox1.Load("http://www.thedemonsden.com/index.php?action=verificationcode;vid=register;rand=dd253984e86650be850ff83e24900251");
如果我尝试类似的操作:
richTextBox1.Text += pictureBox1.ImageLocation.ToString();
它表明该位置确实是正确......
提前致谢,
I have a simple problem and i can't work out what is going on, i have loaded generated images to picture boxes before with the same url structure with no problems, the below url is the location of my image but when i try picturebox1.load(url) it loads it no problem apparently but the imagebox shows no image, try blocks show it works fine.
If i browse to the url the image shows, if i use html to show the image with the url as src it works fine also...
What am i missing here?
Image location is:
Code:
pictureBox1.Load("http://www.thedemonsden.com/index.php?action=verificationcode;vid=register;rand=dd253984e86650be850ff83e24900251");
If i try something like:
richTextBox1.Text += pictureBox1.ImageLocation.ToString();
it shows that the location is indeed correct....
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打开 http://www.thedemonsden.com/index.php?action=verificationcode;vid=register;rand=dd253984e86650be850ff83e24900251 在浏览器中。
它是 1 像素 x 1 像素的图像。
Open http://www.thedemonsden.com/index.php?action=verificationcode;vid=register;rand=dd253984e86650be850ff83e24900251 in your browser.
Its a 1px by 1px image.
您应该尝试使用其他具有良好分辨率的图像,该图像至少应该可见,然后检查应用程序。
You should try with other image with good resolution that should be atleast visible then check the application.