393
Views
8
Comments
How to print entire screen or save screen as PDF format

my home screen has multiple reports and charts i need to convert the entire content in the page into pdf .tried using ultimate pdf aim able to get 1page pdf only but while using htmltopdf converter i am getting error while running in browser to setups in backend.

Capture1.PNG
2024-01-04 15-15-51
Abed Al Banna

Hi @ARIHARAN KRISHNAN 

What exactly went wrong with UltimatePDF? 

UserImage.jpg
ARIHARAN KRISHNAN

Hi @Abed Al Banna while using ultimate pdf from forge its downloading only the visible scree as 1 page pdf and the content which is left behind scroll down bar is unavailable in pdf. please find the below attached result pdf for your reference.

this is my entire screen but in pdf u can find till pie chart only.

Report.PDF
2024-01-04 15-15-51
Abed Al Banna

Could you attach the OML of your UltimatePDF implementation?

2023-10-21 19-42-11
Tousif Khan
Champion

Hello

How you are printing this screen can you also attach the action flow here?

2022-07-05 07-11-46
Harika

Hi @ARIHARAN KRISHNAN 

Ultimate PDF

Do add the following to your CSS .This CSS helps to print all the pages

/* CSS for Reactive Printing */

@media all { 

 .page-break {    

display: none; 

 }

@media print {  

html, body {    

height: initial !important;    

overflow: initial !important;   

 -webkit-print-color-adjust: exact;  

}} 

@media print {  

.page-break {    

margin-top: 1rem;    

display: block;    

page-break-before: auto;  

}} @page {  

size: auto;  

margin: 20mm;

}

 Regards
Harika.R


2022-07-05 07-11-46
Harika

Hi @ARIHARAN KRISHNAN

In  Html2PdfConverter we need to upload binaries. Download the exe file from wkhtmltopdf and Install. In bin you can find the binaries upload them  in HTML2pdf backoffice Adminstration screen


Regards
Harika.R
 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.