htmltopdf(html_filename, pdf_filename)
| Paramètre | Description |
|---|---|
| html_filename | une chaîne : nom du fichier html. |
| pdf_filename | une chaîne : nom du fichier pdf (destination). |
htmltopdf convertit une page HTML en PDF.
txt = {'## Example of Markdown text';
'>Nelson html to pdf conversion example'};
html = markdown(txt);
f = fopen([tempdir(), 'htmltopdf_example.html'], 'wt');
fwrite(f, html);
fclose(f);
htmltopdf([tempdir(), 'htmltopdf_example.html'], [tempdir(), 'htmltopdf_example.pdf'])
if ispc()
winopen([tempdir(), 'htmltopdf_example.pdf']);
end
| Version | Description |
|---|---|
| 1.0.0 | version initiale |