3 require_once
'./Services/PDFGeneration/interfaces/interface.ilRendererConfig.php';
4 require_once
'./Services/PDFGeneration/interfaces/interface.ilPDFRenderer.php';
19 $this->lng = $DIC[
'lng'];
33 $margin_left =
new ilTextInputGUI($this->lng->txt(
'margin_left'),
'margin_left');
36 $margin_top =
new ilTextInputGUI($this->lng->txt(
'margin_top'),
'margin_top');
39 $margin_right =
new ilTextInputGUI($this->lng->txt(
'margin_right'),
'margin_right');
42 $margin_bottom =
new ilTextInputGUI($this->lng->txt(
'margin_bottom'),
'margin_bottom');
45 $image_scale =
new ilTextInputGUI($this->lng->txt(
'image_scale'),
'image_scale');
118 'margin_left' =>
'10',
119 'margin_top' =>
'10',
120 'margin_right' =>
'10',
121 'margin_bottom' =>
'10',
122 'image_scale' =>
'1',
143 ->setZoomFactor(0.17);
156 require_once
'libs/composer/vendor/autoload.php';
159 $pdf =
new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT,
true,
'UTF-8',
false);
162 $pdf->SetAutoPageBreak(
'auto',
$config[
'margin_buttom']);
163 $pdf->setImageScale(
$config[
'image_scale']);
165 $pdf->setHeaderFont(array(PDF_FONT_NAME_MAIN,
'', PDF_FONT_SIZE_MAIN));
166 $pdf->setFooterFont(array(PDF_FONT_NAME_DATA,
'', PDF_FONT_SIZE_DATA));
167 $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
168 $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
169 $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
170 $pdf->SetFont(
'dejavusans',
'', 10);
171 $pdf->setSpacesRE(
'/[^\S\xa0]/');
173 foreach ($job->getPages() as $page) {
176 $pdf->writeHTML($page,
true,
false,
true,
false,
'');
178 $result = $pdf->Output(basename($job->getFilename()), $job->getOutputMode());
180 if (in_array($job->getOutputMode(), array(
'I',
'D'))) {
const RENDER_PNG_AS_IMG_EMBED
getConfigFromForm(\ilPropertyFormGUI $form, $service, $purpose)
from ilRendererConfig
validateConfigInForm(\ilPropertyFormGUI $form, $service, $purpose)
from ilRendererConfig
prepareGenerationRequest($service, $purpose)
Prepare the content processing at the beginning of a PDF generation request Should be used to initial...
generatePDF($service, $purpose, $config, $job)
from ilPDFRenderer
static getInstance()
Singleton: get instance.
getDefaultConfig($service, $purpose)
from ilRendererConfig
__construct()
from ilPlugin
populateConfigElementsInForm(\ilPropertyFormGUI $form, $service, $purpose, $config)
from ilRendererConfig
addConfigElementsToForm(\ilPropertyFormGUI $form, $service, $purpose)
from ilRendererConfig