Hi,
I am not sure but there are many unbelievable things getting done each day.
So my question is that can we rotate a generated page with 90 degrees like how we do this in pdf using either php or JavaScript?
Hi,
I am not sure but there are many unbelievable things getting done each day.
So my question is that can we rotate a generated page with 90 degrees like how we do this in pdf using either php or JavaScript?
While this is for printing, you should definitely use Paged Media rules from CSS 3 :
@page {
size: landscape;
}
More information here. I know this is not supported by all the browsers, but this is the easiest option to print what you want. Another option would be to convert XHTML to PDF using DOMPDF which is under active development.