Function: doc-view-odf->pdf-converter-unoconv

doc-view-odf->pdf-converter-unoconv is a byte-compiled function defined in doc-view.el.gz.

Signature

(doc-view-odf->pdf-converter-unoconv ODF CALLBACK)

Documentation

Convert ODF to PDF asynchronously and call CALLBACK when finished.

The converted PDF is put into the current cache directory, and it is named like ODF with the extension turned to pdf.

Source Code

;; Defined in /usr/src/emacs/lisp/doc-view.el.gz
(defun doc-view-odf->pdf-converter-unoconv (odf callback)
  "Convert ODF to PDF asynchronously and call CALLBACK when finished.
The converted PDF is put into the current cache directory, and it
is named like ODF with the extension turned to pdf."
  (doc-view-start-process "odf->pdf" doc-view-odf->pdf-converter-program
			  (list "-f" "pdf" "-o" (doc-view--current-cache-dir) odf)
			  callback))