size of image file
5 次查看(过去 30 天)
显示 更早的评论
hi. I want to ask about: how can we get the size of an image file (in Byte/kByte)? Because i want to put it in the edit box/text. thanks.
0 个评论
回答(2 个)
Walter Roberson
2012-3-6
Use dir() and look at the "size" field that is returned; that will be in bytes.
4 个评论
Jan
2012-3-6
"dir is not defined for 'uint8' input"
This mean that you call DIR with an UINT8 variable like:
a = uint8(rand(10));
b = dir(a);
I assume you read an image file into a variable and use this variable instead of the filename afterwards.
A general recommendation: It is efficient to post the code, which causes the problem, and the complete error message. Then assisting is easier and efficient.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!