FriendsOfREDAXO/pdfout

Teilweise werden Bilder nicht im PDF ausgegeben

olien opened this issue · 4 comments

olien commented
Teilweise werden Bilder nicht im PDF ausgegeben

konkretes beispiel? liegts an einem bild? wie reproduzieren?

olien commented

Hier wird nur das dritte bild richtig ausgegeben:

<img src="http:/blupp.de/images/standard/240.jpg" width="250px"> 
<img src="images/standard/240.jpg" width="250px">
<img src="media/240.jpg" alt="" width="250px">
<img src="http://placekitten.com/250/250" width="250px">

blupp.de = eigene Domain

media/240.jpg funktioniert , da dompdf über den Serverpfad das Dokument findet.
Die Urls mit Domain sollten hiermit funktionieren
$dompdf->set_option('enable_remote', TRUE);
Die relative .htacces - Adresse wird nicht funktionieren

Habe es so gelöst :
`$xpdfcontent = str_replace('<a href="/media/', '<a href="http://domain.xyz/index.php?fileName=', $xpdfcontent);

$xpdfcontent = str_replace("/index.php?rex_media_type=dopic&rex_media_file=", "media/", $xpdfcontent);

$xpdfcontent = str_replace("/media/", "media/", $xpdfcontent);
$xpdfcontent = str_replace("/images/", "media/", $xpdfcontent);
$xpdfcontent = str_replace(".media/", "media/", $xpdfcontent);`

Das deckt die meisten Fälle bei mir ab.