在siview中显示图像的大小

时间:2018-11-18 05:54:25

标签: python

我当前正在终端中打印图像的尺寸。如何分别获得这两张图片下方的尺寸。

print('size of original image: ', int(os.stat(f).st_size / 1024), 'kB')
            print('size of compressed image:', int(os.stat('compressed_' + f).st_size / 1024), 'kB')

1 个答案:

答案 0 :(得分:0)

好的,我自己得到答案。从图表下方的变量中打印整数值。

     org = int(os.stat(f).st_size / 1024)
                    ax1.set_xlabel('The size is %d' % org)

             comp = int(os.stat('compressed_' + f).st_size / 1024)
                ax2.set_xlabel('The size is %d' % comp)