php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13258 pdf_place_image dies when image file is not accessible
Submitted: 2001-09-12 01:07 UTC Modified: 2001-10-08 13:23 UTC
From: rob at rsee dot net Assigned:
Status: Not a bug Package: PDF related
PHP Version: 4.0.6 OS: Linux 2.4
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rob at rsee dot net
New email:
PHP Version: OS:

 

 [2001-09-12 01:07 UTC] rob at rsee dot net
The following code causes a script to silently die on the call to pdf_place_image when the file in pdf_open_image_file is not accessible (exists but file permissions deny access).

$image=pdf_open_image_file($pdf,"png","/usr/local/apache/htdocs/images/timesheet.png");
pdf_place_image($pdf, $image, 1, 1,.48);

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-08 13:23 UTC] rjs@php.net
you should use something like:

if (!$image) {
    die("Couldn't open image ".$imagefile);
}

to check whether the image was existing, otherwise PDFlib will throw an exception when you use the invalid image handle afterwards.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sun Jan 05 05:01:28 2025 UTC