首页 > 编程语言 >【Python】SystemError: tile cannot extend outside image:【PIL Image crop()】

【Python】SystemError: tile cannot extend outside image:【PIL Image crop()】

时间:2023-01-08 11:11:58浏览次数:41  
标签:upper PIL extend Python image 裁剪 crop left 1000

# 图片裁剪,需要设置边缘间距【left,upper,right,lower】
image_5=image.crop(box=(1000,1000,1000,1000))
image_5.show()

出现错误

SystemError: tile cannot extend outside image

意思就是超限了,裁剪参数超出边缘了。

这里就说明了BOX里面四个参数的不是单纯的裁剪边缘距离。

而是:

left:左边裁剪起始位置

upper:上边裁剪起始位置

right:需要裁剪多大像素,从左边起始位置开始算起,所以这个数值必须大于left,否则会报错。因为真正裁剪的宽尺寸是:right-left

lower:需要裁剪的像素末端,也就是从上边开始到这个数值为裁剪的尺寸大小:lower-upper。所以这个数值需要比upper大。

正确的应该是:

# 图片裁剪,需要设置边缘间距【left,upper,right,lower】
image_5=image.crop(box=(1000,1000,5000,5000))
image_5.show()

如果后面的末端位置超过了原本图片的像素大小,会自动留黑裁剪。具体自行测试查看具体效果。

 

标签:upper,PIL,extend,Python,image,裁剪,crop,left,1000
From: https://www.cnblogs.com/ygyalex/p/17034264.html

相关文章