1. Go to this page and download the library: Download jorisros/idml-lib library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jorisros / idml-lib example snippets
// Load library
le
$file = new \JorisRos\IDMLlib\IDMLfile('../tests/assets/example.idml');
$idml = new \JorisRos\IDMLlib\IDMLlib($file);
// Recieve tags from who are defined in Indesign
$tags = $idml->getContentTags();
// Read content from tag `dynamic_content`
$content = $idml->getContentByTagName('dynamic_content');
echo $content;
// Idea for how it should be working in the future, for creating personalized content
$idml = new \JorisRos\IDMLlib\IDMLlib($file);
$masterSpread = $idml->getMasterSpread();
$idml->addPage($masterSpread, ['tag', 'Tag replace content']);
$idml->saveAs('/tmp/test.idml');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.