Is there a way to convert an input html stream to an "image-only" pdf (not .jpg or .tif) directly using webkit based tools like wkhtmltopdf or phantom.js ?
I have tried both of wkhtmltopdf and phantom.js and the output pdf produced by either one is searchable (i.e has text that can be be searched). So, basically I would like to have the source text based HTML tags to converted to images well.
While, I can do some post-processing on output "searchable" pdf to make it "image-only" pdf, I would like to avoid it if possible..
I am open to exploring other tools as well , provided they are standards based like webkit and support media-type css.
This conversion is happening server-side, so performance and resource utilization is also a key factor.
BTW, my dev environment is dotnet / c#.
Thanks, AGore