Reportlab 圆角矩形
Reportlab Rounded Rect
在文档和源代码中,我看到很多对圆角矩形的引用,但是,我似乎不能画一个。
我正在绘制一个普通矩形:
canvas.rect(15, 625, 250, 125, fill=0)
我向圆角传递哪些参数?
尝试调用 canvas.roundRect(left, bottom, width, height, radius)
:
canvas.roundRect(15, 625, 250, 125, 4, stroke=1, fill=0)
应该给你想要的。
在文档和源代码中,我看到很多对圆角矩形的引用,但是,我似乎不能画一个。
我正在绘制一个普通矩形:
canvas.rect(15, 625, 250, 125, fill=0)
我向圆角传递哪些参数?
尝试调用 canvas.roundRect(left, bottom, width, height, radius)
:
canvas.roundRect(15, 625, 250, 125, 4, stroke=1, fill=0)
应该给你想要的。