I want to print a very large image generated by my program with 31279px in width with javascript but window.print() prints only a little part of the entire image.
Please any solution to this?
I want to print a very large image generated by my program with 31279px in width with javascript but window.print() prints only a little part of the entire image.
Please any solution to this?
Three choices:
I think you should really do PDF.
Using CSS resize the image to 100% width of the window, this should theoretically work.
img#theImage {
width:100%;
}