使用c#检查图像文件大小
我正在尝试从本地磁盘加载图像,并且它正在工作。但我的问题是我想在加载之前检查图像大小是否有效,如果不是,则 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,这是为了检查磁盘上文件的大小
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
在不读取整个文件的情况下获取图像尺寸
Getting image dimensions without reading the entire file