le monde add experimental image only mode

This commit is contained in:
quenousimporte 2024-06-14 12:21:54 +02:00
parent 2c7c35cb09
commit 74ad25f7e3
1 changed files with 12 additions and 8 deletions

View File

@ -72,6 +72,8 @@
// parameters hardcoded for now // parameters hardcoded for now
$includeimages = false; $includeimages = false;
$includepages = true; $includepages = true;
$imagesonly = false;
$imagesize = $imagesonly ? "XLARGE" : "MEDIUM";
$url = $_POST['lmurl']; $url = $_POST['lmurl'];
@ -122,14 +124,17 @@
}))[0]; }))[0];
$pageid = $pageobj->PublicationPageID; $pageid = $pageobj->PublicationPageID;
$path = lm_download_image($url, 'Preview-MEDIUM-', $pageid); $path = lm_download_image($url, 'Preview-' . $imagesize . '-', $pageid);
$epub->AddPage('<img style="width: 100%" src="' . $path . '">', false, 'Page ' . $page, true);
// Add page 1 as cover
if ($page == 1) if ($page == 1)
{ {
// cover
$epub->AddImage($path, 'image/jpeg', true); $epub->AddImage($path, 'image/jpeg', true);
} }
else
{
$epub->AddPage('<img style="width: 100%" src="' . $path . '">', false, 'Page ' . $page, true);
}
} }
$articlebody = array_filter($article->ContentItem, function($item) { return $item->ContentType == 'text/xml'; }); $articlebody = array_filter($article->ContentItem, function($item) { return $item->ContentType == 'text/xml'; });
@ -161,13 +166,12 @@
$pagecontent .= '<p><img style="width: 100%" src="' . $path . '"></p>'; $pagecontent .= '<p><img style="width: 100%" src="' . $path . '"></p>';
} }
} }
$pagecontent .= $articlebody->HtmlText; $pagecontent .= $articlebody->HtmlText;
// debug if (!$imagesonly)
// echo '<pre style="white-space: pre-wrap;">' . $pagecontent . '<br>----------------------</pre>'; {
$epub->AddPage($pagecontent, false, strip_tags($articlebody->Title), true);
$epub->AddPage($pagecontent, false, strip_tags($articlebody->Title), true); }
} }
} }
write_epub($epub); write_epub($epub);