Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

$OUTPUT->user_picture($user) in tcpdf but picture is not visible in the pdf file.

share|improve this question
2  
You forgot the } on line 89. – relentless Nov 7 '12 at 17:54
@relentless: congrats! – itachi Nov 7 '12 at 18:26

closed as not a real question by Neal, andrewsi, Deestan, nickb, Baba Nov 7 '12 at 18:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Well you can set the image in two ways, if the images comes from a stream which it does from your example, use this:

// Example of Image from data stream ('PHP rules')
$imgdata = $OUTPUT->user_picture($user);

// The '@' character is used to indicate that follows an image data stream and not an image file name
$pdf->Image('@'.$imgdata);

if you are refrensing an image from a specific location and you want to resize it use this:

// Image example with resizing
$pdf->Image('../images/image_demo.jpg', 15, 140, 75, 113, 'JPG', 'http://www.tcpdf.org', '', true, 150, '', false, false, 1, false, false, false);
share|improve this answer
I tried it but getting error like TCPDF ERROR: [Image] Unable to get image: C:\Documents and Settings\Sunil Mohanty\Local Settings\Temp\img74.tmp – Sunil Mohanty Nov 7 '12 at 18:17
img74.tmp is not an image. it would have to be a jpg extension to work. try jpeg – Relentless Nov 7 '12 at 19:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.