Diferenças
Aqui você vê as diferenças entre duas revisões dessa página.
Próxima revisão | Revisão anterior | ||
software:embedded_fonts_in_pdfs [2016/10/20 16:05] maziero criada |
software:embedded_fonts_in_pdfs [2020/10/09 14:08] (atual) maziero |
||
---|---|---|---|
Linha 13: | Linha 13: | ||
Finally, the PostScript file can be converted in PDF, using: | Finally, the PostScript file can be converted in PDF, using: | ||
- | ps2pdfwr -dCompatibilityLevel=1.4 -dMAxSubsetPct=100 -dSubsetFonts=true -dPDFSETTINGS=/prepress -dEmbedAllFonts=true -sPAPERSIZE=a4 myfile.ps | + | ps2pdfwr -dCompatibilityLevel=1.4 -dMAxSubsetPct=100 \ |
+ | -dSubsetFonts=true -dPDFSETTINGS=/prepress \ | ||
+ | -dEmbedAllFonts=true -sPAPERSIZE=a4 myfile.ps | ||
The steps above consider the use of A4 paper format. For letter-sized paper, the following commands should be used instead: | The steps above consider the use of A4 paper format. For letter-sized paper, the following commands should be used instead: | ||
dvips -Ppdf -G0 -tletter myfile.dvi | dvips -Ppdf -G0 -tletter myfile.dvi | ||
- | ps2pdfwr -dCompatibilityLevel=1.4 -dMAxSubsetPct=100 -dSubsetFonts=true -dPDFSETTINGS=/prepress -dEmbedAllFonts=true -sPAPERSIZE=letter myfile.ps | + | ps2pdfwr -dCompatibilityLevel=1.4 -dMAxSubsetPct=100 \ |
+ | -dSubsetFonts=true -dPDFSETTINGS=/prepress \ | ||
+ | -dEmbedAllFonts=true -sPAPERSIZE=letter myfile.ps | ||
The resulting PDF file can then be optimized, in order to reduce its loading time: | The resulting PDF file can then be optimized, in order to reduce its loading time: |