like the default page orientation(as in images) of print window is Portrait. So how can we change that thing to landscape so when ever we print that page it comes in Landscape orientation. Is there any way to do that.Default view of print windows in chrome
Asked
Active
Viewed 1,631 times
1 Answers
0
If you are using java print API you can set the page orientation as beloe
pageFormat.setOrientation(PageFormat.LANDSCAPE)
Also this Stackoverflow thread may be useful
-
Can you try using css media to set to landscape? – lsiva Jul 22 '16 at 20:10
-
Check this link http://stackoverflow.com/questions/138422/landscape-printing-from-html – lsiva Jul 22 '16 at 20:12