如何使用app-engine图像API和python知道图像的宽度和高度?

时间:2011-09-11 01:39:34

标签: python image google-app-engine

如何使用app-engine图像API来了解图像的宽度和高度python,有人建议我使用the composite function - pass your image in as the sole input image, and specify the canvas size as the desired size of the output image.

但我不明白!! 任何简单的例子都会非常有用.. 并提前感谢!

1 个答案:

答案 0 :(得分:4)

如果我理解您的问题,您只需要使用google.appengine.api.images.Image引用中的属性width和height。

一个例子:

flux = img.read() # From your request

image_ref = Image(image_data=flux)
w = image_ref.width
h = image_ref.height