ryakad/pandoc-php

Convert to pdf

Closed this issue · 4 comments

I try convert my content to pdf with

$pandoc = new Pandoc();
$options = array(
    "from"  => "plain",
    "to"    => "pdf"
);
$result = $pandoc->runWith($content, $options);

But I have this error:
ContextErrorException: Warning: file_get_contents(/tmp/pandoc53523a3db40e2.pdf): failed to open stream

Thanks for your help.

"plain" is a bad input format.

did it work? I am also trying to convert markdown to pdf using this lib ?

Yes, it's works. Do you have any problems?

Sorry, got it working using runWith.