Link to home
Start Free TrialLog in
Avatar of HFunakawa
HFunakawaFlag for Japan

asked on

Inserting Image from url in PDF using FPDF

hello,
Im using FPDF to make PDF file.
and I want to insert qr-code image to PDF file.

I made php file for make qr-code.In HTML it works.
<img src="sampleqr.php?url=https://www.yahoo.com/" height="100" width="100">

How can i put this qr-code image to PDF, like this.
$pdf->Image('sampleqr.php?url=https://www.yahoo.com/', $x, $y, 50.0);
it doesnt work.

Is it possible to do this easily NOT save file in local?
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of HFunakawa

ASKER

Thanks for you comment that easy to understand why i have to save file.I will try.