📜  Pgmagick 剪切()方法 - Python

📅  最后修改于: 2022-05-13 01:54:36.484000             🧑  作者: Mango

Pgmagick 剪切()方法 - Python

Shear ()函数是 Pgmagick 库中的一个内置函数,用于沿 X 或 Y 轴滑动图像的一个边缘以创建平行四边形。 X 方向剪切沿 X 轴滑动边缘,而 Y 方向剪切沿 Y 轴滑动边缘。剪切角用于设置图像的剪切。

输入图像:

shear(x, y)

输出:

示例 2:

from pgmagick import Image, DrawableCircle, DrawableText
from pgmagick import Geometry, Color
  
# draw the image of dimension 600 * 600
img = Image('input.png')
  
# invoke shear function with width as 30, height as 40 and Percentage as True
img.shear(30, 40)
  
# invoke write function along with filename
img.write('2_a.png')

输出: