我在 PDF 中画线,我想以 1:1 以外的比例缩放。
问题是我得到的笔触看起来像是用书法笔绘制的。
是否可以在 PDF 中以某种方式调整路径大小,恢复图形状态,然后绘制上一个路径的笔划。
这就是我在 PDF 中获得书法线条笔触的方式:
5 w // width of stroke
q // saves the current graphics state
0 1 0 0.2 0 0 cm // transformation matrix scaling with height reduced to 20%
0 10 m // Start of line
10 10 l // line to
20 100 l
30 100 l
40 10 l
S // draws stroke
Q // Restores graphics state
在 HTML5 画布中,可以在恢复图形状态后绘制笔触,以便用等宽的线绘制路径。
http://www.html5canvastutorials.com/advanced/html5-canvas-ovals/
在 PDF 中将 S 放在 Q 之后不起作用。
有没有办法在 PDF 中获得相同的结果,其中只有线条路径被缩放,而不是笔划本身?