define('FPDF_FONTPATH', './fonts');
$templateAnschnitt_0mm = "faltblatt_6_seiten_9.8x9.8_ohne_anschnitt.pdf";
$templateAnschnitt_1mm = "faltblatt_6_seiten_9.8x9.8_1mm_anschnitt.pdf";
$templateAnschnitt_2mm = "faltblatt_6_seiten_9.8x9.8_2mm_anschnitt.pdf";
if (file_exists($templateAnschnitt_0mm)) {
    FlyerRendering("{$templateAnschnitt_0mm}", "lokalisiert", 0.0);
} else {
    echo "\nDie Datei {$templateAnschnitt_0mm} ist nicht vorhanden!\n";
}
if (file_exists($templateAnschnitt_1mm)) {
    FlyerRendering("{$templateAnschnitt_1mm}", "lokalisiert", 1.0);
} else {
    echo "\nDie Datei {$templateAnschnitt_1mm} ist nicht vorhanden!\n";
}
if (file_exists($templateAnschnitt_2mm)) {
    FlyerRendering("{$templateAnschnitt_2mm}", "lokalisiert", 2.0);
} else {
    echo "\nDie Datei {$templateAnschnitt_2mm} ist nicht vorhanden!\n";
}
echo "\n";
echo "Fertig!\n";
echo "\n";
exit;
function FlyerRendering($inputFile, $outputPostfix, $anschnitt)
{
    /*------------------------------------------------------------------------------------
     * Bitte tragt hier eure lokalen Freifunk Daten ein.
     *------------------------------------------------------------------------------------
     *
     * Hinweiss Community-Logo: 
     * Moegliche Format sind GIF, JPG und PNG.
if (!file_exists($configFile)) {
    $configFile = $scriptPath . 'config.php';
}
define('FPDF_FONTPATH', $scriptPath . 'fonts');
require_once $scriptPath . 'fpdf/fpdf.php';
require_once $scriptPath . 'fpdi/fpdi.php';
/** @noinspection PhpIncludeInspection */
$config = (require $configFile);
foreach ($config['templates'] as $templateDatei => $anschnitt) {
    $templateFile = $scriptPath . $templateDatei;
    if (!file_exists($templateFile)) {
        echo 'Die Datei ' . $templateDatei . ' ist nicht vorhanden' . PHP_EOL;
        continue;
    }
    echo PHP_EOL;
    FlyerRendering($config, $templateFile, $outputPath, $config['dateiPrefix'], $anschnitt);
}
echo PHP_EOL . 'Fertig!' . PHP_EOL;
exit;
function FlyerRendering($config, $inputFile, $outputPath, $outputPostfix, $anschnitt = 0.0)
{
    // Breite der einzelnen Seiten
    $wRechts = 99.0;
    //mm
    $wMitte = 98.0;
    //mm
    $wLinks = 97.0;
    //mm
    // Community Name
    $communityNamePositionX = $wLinks + $wMitte + $config['communityNamePositionOffsetX'];
    //mm