Lines Matching full:pdf
34 For conversion to PDF, ``rsvg-convert(1)`` of librsvg
37 * SVG to PDF: To generate PDF, you need at least one of this tools:
44 * generate PDF from SVG / used by PDF (LaTeX) builder
46 * generate SVG (html-builder) and PDF (latex-builder) from DOT files.
192 dot_Tpdf_ptn = b'pdf'
214 … "For SVG to PDF conversion, install either Inkscape (https://inkscape.org/) (preferred) or\n"
220 logger.verbose("use 'dot -Tsvg' and rsvg-convert(1) for DOT -> PDF conversion")
228 logger.verbose("use 'dot -Tpdf' for DOT -> PDF conversion")
230 logger.verbose("use 'dot -Tsvg' and convert(1) for DOT -> PDF conversion")
247 prefer PDF while *html* builder prefer SVG format for images.
273 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
274 img_node['uri'] = fname + '.pdf'
275 img_node['candidates'] = {'*': fname + '.pdf'}
297 "no SVG to PDF conversion available / include SVG raw.\n"
303 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
304 img_node['uri'] = fname + '.pdf'
305 img_node['candidates'] = {'*': fname + '.pdf'}
365 """Converts SVG to PDF with ``inkscape(1)`` or ``convert(1)`` command.
372 * ``pdf_name`` pathname of the output PDF file with extension (``.pdf``)
383 cmd = [inkscape_cmd, '-z', '--export-pdf=%s' % pdf_fname, svg_fname]
406 """Convert SVG to PDF with ``rsvg-convert(1)`` command.
409 * ``pdf_fname`` pathname of output PDF file, including extension ``.pdf``
412 SVG -> PDF conversion is done by ``rsvg-convert(1)``.
421 cmd = [rsvg_convert_cmd, '--format=pdf', '-o', pdf_fname, svg_fname]