php - PHPExcel - Remove Last 3 empty rows from the PDF file -
the pdf file adding last 3 empty rows @ bottom. there way remove them? excel perfect, pdf has problem.
here code
$title = "download"; $objphpexcel->getactivesheet()->settitle($title); $objphpexcel->setactivesheetindex(0); $objwriter = new phpexcel_writer_excel2007($objphpexcel);//, 'excel5'); $objwriter->save("./download/download.xlsx"); $objphpexcel->getactivesheet() ->getpagesetup() ->setorientation(phpexcel_worksheet_pagesetup::orientation_landscape); $objphpexcel->getactivesheet()->getstyle("a1:i".($nr+2))->applyfromarray( array( 'borders' => array( 'allborders' => array( 'style' => phpexcel_style_border::border_none, 'color' => array('rgb' => 'ffffff') ) ) ) ); if (!phpexcel_settings::setpdfrenderer( $renderername, $rendererlibrarypath )) { echo 'notice: please set $renderername , $rendererlibrarypath values' . '<br />' . 'at top of script appropriate directory structure'; exit; } $objwriter = phpexcel_iofactory::createwriter($objphpexcel, 'pdf'); $objwriter->save("./download/download.pdf");

Comments
Post a Comment