ValueError: Image size of 55600x96000 pixels is too large. It must be less than 2^16 in each directi 程序员文章站 2024-02-08 17:43:46 ... 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 上一篇: MySQL 随机查询数据与随机更新数据实现代码_MySQL 下一篇: PHP+MYSQL 出现乱码的解决方法 推荐阅读 ValueError: Image size of 55600x96000 pixels is too large. It must be less than 2^16 in each directi Image size of 512922x322 pixels is too large. It must be less than 2^16 in each direction