htmltopdf
Convers html page to pdf.
📝Syntax
htmltopdf(html_filename, pdf_filename)
📥Input Arguments
Parameter Description
html_filename a string: html filename.
pdf_filename a string: pdf filename (destination).
📄Description

htmltopdf converts html page to pdf.

💡Examples
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
🔗See Also
markdown
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub