lamuzzachiodi / tclfpdf

Port of tFPDF (PHP) by by Ian Back and Tycho Veltmeijer (modified version of FPDF by Olivier Plathey) to TCL
9 stars 1 forks source link

example dash.tcl #4

Open gregnix opened 1 year ago

gregnix commented 1 year ago

example dash.tcl

false Output "dash.tcl"; rather Output "dash.pdf";

lamuzzachiodi commented 1 year ago

Fix in 1.6

gregnix commented 3 months ago

package require tclfpdf namespace import ::tclfpdf::*

../examples/dash.tcl

Init; AddPage; SetLineWidth 0.1; SetDash 5 5; #5mm on, 5mm off Line 20 20 190 20; SetLineWidth 0.5 ; Line 20 25 190 25; SetLineWidth 0.8; SetDash 4 2; #4mm on, 2mm off Rect 20 30 170 20; SetDash; #restores no dash Line 20 55 190 55;

Output "dash.tcl";

Output "dash.pdf";