shabbysquire Client Регистрация 25.11.2012 Сообщения 544 Благодарностей 26 Баллы 28 13.03.2015 #1 Is there a way to get the size of an image in my folder? I need both the height & width in pixels. Thanks.
Is there a way to get the size of an image in my folder? I need both the height & width in pixels. Thanks.
LexxWork Client Регистрация 31.10.2013 Сообщения 1 190 Благодарностей 791 Баллы 113 13.03.2015 #2 use imagemagic convert infle -ping -format "%w" info: or c# var size = System.Drawing.Image.FromFile(filepath).Size; Реакции: peter и shabbysquire
use imagemagic convert infle -ping -format "%w" info: or c# var size = System.Drawing.Image.FromFile(filepath).Size;
shabbysquire Client Регистрация 25.11.2012 Сообщения 544 Благодарностей 26 Баллы 28 13.03.2015 #3 Thank you LW. More tricks to get the job done!
Q qlwik Client Регистрация 03.04.2013 Сообщения 207 Благодарностей 5 Баллы 18 17.02.2016 #4 how can I put var size from c to zennoposter variable?
Q qlwik Client Регистрация 03.04.2013 Сообщения 207 Благодарностей 5 Баллы 18 17.02.2016 #5 ok got it just add in c code: return size; Реакции: rostonix