19 declare(strict_types=1);
31 $this->
lng = $DIC->language();
42 $margin_right =
new ilTextInputGUI($this->
lng->txt(
'margin_right'),
'margin_right');
45 $margin_bottom =
new ilTextInputGUI($this->
lng->txt(
'margin_bottom'),
'margin_bottom');
57 $form->
getItemByPostVar(
'margin_bottom')->setValue($config[
'margin_bottom']);
82 'margin_left' =>
'10',
84 'margin_right' =>
'10',
85 'margin_bottom' =>
'10',
98 ->setZoomFactor(0.17);
104 $pdf =
new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT,
true,
'UTF-8',
false);
106 $pdf->SetMargins($config[
'margin_left'], $config[
'margin_top'], $config[
'margin_right']);
107 $pdf->SetAutoPageBreak(
'auto', $config[
'margin_bottom']);
108 $pdf->setImageScale($config[
'image_scale']);
110 $pdf->setHeaderFont([PDF_FONT_NAME_MAIN,
'', PDF_FONT_SIZE_MAIN]);
111 $pdf->setFooterFont([PDF_FONT_NAME_DATA,
'', PDF_FONT_SIZE_DATA]);
112 $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
113 $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
114 $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
115 $pdf->SetFont(
'dejavusans',
'', 10);
116 $pdf->setSpacesRE(
'/[^\S\xa0]/');
118 foreach ($job->
getPages() as $page) {
121 $pdf->writeHTML($page,
true,
false,
true,
false,
'');
validateConfigInForm(ilPropertyFormGUI $form, string $service, string $purpose)
const RENDER_PNG_AS_IMG_EMBED
populateConfigElementsInForm(ilPropertyFormGUI $form, string $service, string $purpose, array $config)
getConfigFromForm(ilPropertyFormGUI $form, string $service, string $purpose)
getDefaultConfig(string $service, string $purpose)
prepareGenerationRequest(string $service, string $purpose)
Prepare the content processing at the beginning of a PDF generation request Should be used to initial...
addConfigElementsToForm(ilPropertyFormGUI $form, string $service, string $purpose)
static getInstance()
Singleton: get instance for use in ILIAS requests with a config loaded from the settings.
generatePDF(string $service, string $purpose, array $config, ilPDFGenerationJob $job)