Fix failed stat when using setEmbedImagesin HTML writer
Fixes #1084 Closes #1085
This commit is contained in:
parent
8a1cb04830
commit
dbc8777c43
|
@ -643,7 +643,10 @@ class Html extends BaseWriter
|
||||||
} else {
|
} else {
|
||||||
$imageDetails = getimagesize($filename);
|
$imageDetails = getimagesize($filename);
|
||||||
if ($fp = fopen($filename, 'rb', 0)) {
|
if ($fp = fopen($filename, 'rb', 0)) {
|
||||||
$picture = fread($fp, filesize($filename));
|
$picture = '';
|
||||||
|
while (!feof($fp)) {
|
||||||
|
$picture .= fread($fp, 1024);
|
||||||
|
}
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
// base64 encode the binary data, then break it
|
// base64 encode the binary data, then break it
|
||||||
// into chunks according to RFC 2045 semantics
|
// into chunks according to RFC 2045 semantics
|
||||||
|
|
Loading…
Reference in New Issue