vote up 0 vote down star

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.

flag

Duplicate with stackoverflow.com/questions/1507084/… – mjv Oct 15 at 23:17

closed as exact duplicate by mjv, Oscar Reyes, John Millikin, Marc Gravell Oct 16 at 5:15

4 Answers

vote up 1 vote down check

here is an example:

from PIL import Image

def get_num_pixels(filepath):
    width, height = Image.open(open(filepath)).size
    return width*height

print get_num_pixels("/path/to/my/file.jpg")
link|flag
While not incorrect, open(filepath) is not required - Image.open() will accept just the filename. – mhawke Oct 16 at 1:26
vote up 5 vote down

Use PIL to load the image. The total number of pixels will be its width multiplied by its height.

link|flag
vote up 1 vote down

PIL, the Python Imaging Library can help you get this info from image's metadata.

link|flag
vote up 3 vote down

Here is the example that you've asked for:

from PIL import Image
import os.path

filename = os.path.join('path', 'to', 'image', 'file')
img = Image.open(filename)
width, height = img.size
print "Dimensions:", img.size, "Total pixels:", width * height
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.