Possible Duplicate:
How to check dimensions of all images in a directory using python?
I was wondering if somebody knows how can I read an image total amount of pixels in a python sript. Could you provide and example?
Thanks a lot.
|
|
I was wondering if somebody knows how can I read an image total amount of pixels in a python sript. Could you provide and example? Thanks a lot.
|
|||
|
closed as exact duplicate by mjv, Oscar Reyes, John Millikin, Marc Gravell♦ Oct 16 at 5:15 |
|
|
here is an example:
|
||
|
|
|
Here is the example that you've asked for:
|
||
|
|
|
|
PIL, the Python Imaging Library can help you get this info from image's metadata. |
||
|
|
|
|
Use PIL to load the image. The total number of pixels will be its width multiplied by its height. |
||
|
|