如何使用QPainterPath裁剪图像而不保存imag的其余部分

2024-09-27 23:28:37 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个QPainterPath,我想裁剪一个图像,它是QPixmap。 这段代码对我有用,但我想使用PyQt5内置功能 就像面具没有纽姆

# read image as RGB and add alpha (transparency)
im = Image.open("frontal_1.jpg").convert("RGBA")

# convert to numpy (for convenience)
imArray = numpy.asarray(im)

# create mask
polygon = [(444, 203), (623, 243), (691, 177), (581, 26), (482, 42)]

maskIm = Image.new('L', (imArray.shape[1], imArray.shape[0]), 0)
ImageDraw.Draw(maskIm).polygon(polygon, outline=1, fill=1)
mask = numpy.array(maskIm)
...
newIm = Image.fromarray(newImArray, "RGBA")
newIm.save("out.png")

Tags: 代码图像imagenumpyconvertmaskshapepolygon
2条回答

替换mask的一种可能方法是使用qpaint的setClipPath()方法:

from PyQt5 import QtCore, QtGui

if __name__ == '__main__':
    image = QtGui.QImage('input.png')
    output = QtGui.QImage(image.size(), QtGui.QImage.Format_ARGB32)
    output.fill(QtCore.Qt.transparent)
    painter = QtGui.QPainter(output)

    points = [(444, 203), (623, 243), (691, 177), (581, 26), (482, 42)]
    polygon = QtGui.QPolygonF([QtCore.QPointF(*point) for point in points])

    path = QtGui.QPainterPath()
    path.addPolygon(polygon)
    painter.setClipPath(path)
    painter.drawImage(QtCore.QPoint(), image)
    painter.end()
    output.save('out.png')

在回答了上面的问题后,我稍微修改了一下代码,现在它看起来像:

    path = lips_contour_path
    image = QImage('frontal_2.jpg')
    output = QImage(image.size(), QImage.Format_ARGB32)
    output.fill(Qt.transparent)
    painter = QPainter(output)
    painter.setClipPath(path)
    painter.drawImage(QPoint(), image)
    painter.end()
    # To avoid useless transparent background you can crop it like that:
    output = output.copy(path.boundingRect().toRect())
    output.save('out.png')

相关问题 更多 >

    热门问题