ValueError: Image size of 55600x96000 pixels is too large. It must be less than 2^16 in each directi

ValueError: Image size of 55600x96000 pixels is too large. It must be less than 2^16 in each direction.

问题介绍:在用pycharm做图像处理时,指定了图像的大小,结果报这个错误。
原因:图像的size太大,在JPG、png的最大大小为每个方向65.535像素。这是一个文件格式的限制,没有办法增加。上面的图像尺寸超出了范围。只要不超过这个范围,是可以设置图像大小的

plt.figure(figsize=(宽,长))

因此在pycharm中处理后的图像默认都是640*480

你可能感兴趣的:(代码问题)