Hello,
I am exploring your htmltools for one of our requirement to convert HTML file into multipage Tif file.
Followed article > However, my HTML file was converted into single page tif despite using "-multipagetif" command line parameter.
Pls help on this urgently.
Article that I followed was: https://www.verypdf.com/wordpress/201307/how-to-save-website-to-multipage-tiff-file-37407.html
Also, PFA my HTML file.
Regards,
Customer
------------------------------------
-multipagetif option in htmltools.exe is work only for RTF to TIFF conversion. If you wish convert from HTML file into multipage Tif file, we suggest you may download "Document Converter (docPrint Pro v6.0)" from following web page to try, you can use docPrint Pro v6.0 to convert from HTML file into multipage Tif file easily,
https://www.verypdf.com/app/document-converter/try-and-buy.html#buy_pro
https://www.verypdf.com/artprint/docprint_pro_setup.exe
after you download it, you can run following command line to convert from HTML file into multipage Tif file,
"C:\Program Files (x86)\docPrint Pro v7.0\doc2pdf.exe" -i D:\test.html -o D:\out.tif -b 1 -r 300x300
VeryPDF
------------------------------------
Tried converting thru shared link. Was able to convert doc/html to multipage 1 bit TIF, however some data is not clearly converted i.e. data got pixelated.
For reference see "SOLE" on first page of attached converted TIF file.
PS: I want TIF to be of 1 bit only.
Customer
------------------------------------
You can run following command lines to convert from HTML file to a clear 1 bit TIFF file,
====================================
"C:\Program Files (x86)\docPrint Pro v7.0\doc2pdf.exe" -i D:\test.html -o D:\downloads\1_%04d.png -b 24 -r 300x300
for %F in (D:\downloads\1_*.png) do "C:\Program Files (x86)\docPrint Pro v7.0\imgconv.exe" -threshold 90% "%F" "%F"
"C:\Program Files (x86)\docPrint Pro v7.0\imgconv.exe" D:\downloads\1_*.png D:\downloads\out.tif
del D:\downloads\1_*.png
====================================
You can run above command lines to convert your HTML file to a clear TIFF file without halftone processing.