这将清除所有
void surface_clean(Mpaint *mpaint)
{
mpaint->surface=cairo_image_surface_create_from_png ("cxl.cache.png");
}
我想用x,y,width,height来清理cairo_surface_t中的区域。
有没有接口?
答案 0 :(得分:1)
在此处[1]检查CAIRO_OPERATOR_ *。 pycairo代码:
ctx.set_source_rgba(0.0, 0.0, 0.0, 0.0)
ctx.set_operator(cairo.OPERATOR_CLEAR)
ctx.rectangle(x, y, width, height)
ctx.paint_with_alpha(1.0)