1 2 3 4 5 6 7 8 9 10 11
| if ( ventilOnScreen != false){ //graphe ventil affiché
if ((windowManager.contains(cumulChart)== false) && (windowManager.contains(odg)== false)){ //graphe ventil seul
page3 = new Page ( Orientation.LANDSCAPE, Unit.MM, Size.A4 );
} else {
page3 = new Page ( Orientation.PORTRAIT, Unit.MM, Size.A4 );
}
myPDF.addPage(page3);
myPDF.setTitle("Graphique de ventilation");
myPDF.addImage(ventilChart, 0, 0, 0, 0,null, 100, 1, ResizeMode.FIT_TO_PAGE, "normal",true );
}
myPDF.save(Method.REMOTE, 'http://localhost/create.php', Download.ATTACHMENT, 'rapportConso.pdf'); |
Partager