使用枕头/ PIL

时间:2018-07-13 21:25:18

标签: python-3.x image anaconda python-imaging-library

在Anaconda中,我正在使用PIL库导入尼康NEF图像并显示其大小。原始图像尺寸(根据原始图像文件)是4608像素乘3072像素,但是当我运行程序时,尺寸据说是160乘120像素。如何获得正确的图像尺寸?代码如下所示:

    from PIL import Image
    import numpy as np

    im = Image.open('DSC_0016.NEF')
    width, height = im.size
    print(width,height)

0 个答案:

没有答案