<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 5, 2017 at 1:52 PM, JLuc <span dir="ltr"><<a href="mailto:jluc@no-log.org" target="_blank">jluc@no-log.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello<br>
<br>
When i set options to "outline all" when exporting to PDF<br>
and later save the SLA,<br>
<br>
and later export it to PDF through the commande line option<br>
<br>
using<br>
    filename = os.path.splitext(scribus.getDo<wbr>cName())[0]<br>
    pdf = scribus.PDFfile()<br>
    pdf.file = filename+".pdf"<br>
    pdf.version = 15<br>
    pdf.save()<br>
<br>
then the created PDF has all fonts embeded or subset,<br>
when it should have none, but vectors instead.<br>
<br>
Is there some special argument i have to pass to these python commands ?<br>
<br>
JLuc<br></blockquote><div> </div></div><div class="gmail_extra">To see the list of options, on the Scribus menu bar, use Help -> Scribus Manual, and then in the manual, open the Contents tab and navigate to For Developers -> Scripter API -> PDF Export.</div><div class="gmail_extra">PDFFile has a fontEmbedding property that you can set to 1 to request conversion to vectors.</div><div class="gmail_extra">Can you try adding a line pdf.fontEmbedding = 1</div><div class="gmail_extra">Regards, William Bader, Director of Research and Development at SCS, <a href="http://www.newspapersystems.com">http://www.newspapersystems.com</a><br></div><div class="gmail_extra"><br></div></div></div>