htmltopdf

Convers html page to pdf.

📝 Syntax

  • htmltopdf(html_filename, pdf_filename)

📥 Input argument

  • html_filename - a string: html filename.

  • pdf_filename - a string: pdf filename (destination).

📄 Description

htmltopdf converts html page to pdf.

💡 Example

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.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?