使用c#检查图像文件大小

发布于 2024-11-16 23:12:37 字数 141 浏览 3 评论 0原文

我正在尝试从本地磁盘加载图像,并且它正在工作。但我的问题是我想在加载之前检查图像大小是否有效,如果不是,则 MessageBox.Show("No image!");

假设图像大小为零,则应显示“无效图像”

,是否也可以检查文件扩展名

i'm trying to load image from local disk, and it's working. But my problem is that i'd like to check if image size is valid or not before loading , and if not - then MessageBox.Show("No image!");

say if image size is zero it should say like "Invalid Image"

and is it possible to check the file extension also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寻梦旅人 2024-11-23 23:12:37

请注意,这是为了检查磁盘上文件的大小

MSDN FileInfo.Length 表示它是“当前文件的大小(以字节为单位)”。

或者

您可以获取图像的大小,例如

获取磁盘上文件的大小

<一href="http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/85bf76ac-a254-41d4-a3d7-e7803c8d9bc3" rel="nofollow noreferrer">http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/85bf76ac-a254-41d4-a3d7-e7803c8d9bc3

并把这个东西放进去,如果你可以显示你的消息想

Note this is for checking size of file on disk

MSDN FileInfo.Length says that it is "the size of the current file in bytes."

or

You can get the size of image like

Get size of file on disk

or

http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/85bf76ac-a254-41d4-a3d7-e7803c8d9bc3

and putting this thing in if you can show the msg you want

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文