ObjectProfile / Roassal3Exporters

PDF Exporter for Roassal3
MIT License
8 stars 3 forks source link

hiding "Help" text in exported PDF/SVG #30

Closed capsulecorplab closed 1 year ago

capsulecorplab commented 1 year ago

I ran the code snippet from Example of usage for both PDF and SVG and noticed the "Help" text persists in the exported output. Is there a way to hide that?

Screenshot from 2022-11-08 12-08-54 Screenshot from 2022-11-08 12-10-05

akevalion commented 1 year ago

Hello, in order to hide it, use method: noFixedShapes

RSPDFCairoExporter new
        canvas: c;
        noFixedShapes;
        fileName: 'foo.pdf';
        export
image