Using php and TCPDF to generate a pdf file. Everything works great except when I try to write an EPS image to the pdf using ImageEPS(). Nothing shows up. No errors (it can definitely find the file). It just shows up as white space.

Raster images (like PNG/JPG) work just fine.

I'm using Inkscape to save the .eps file. When I open the file up in any other program, it opens just fine. Its only TCPDF that its not showing up with.

link|improve this question
feedback

2 Answers

I had open my *.ai file in Adobe Illustrator and save the file as "Illustrator 3" version to overcome that issue. Any more current version produced the results you describe (except "Illustrator 8," which gave me the B&W version of my *.ai file).

link|improve this answer
I'm testing the TCPDF library as well and sadly, I'm finding that only Illustrator 3 files work. I can confirm that when I do Illustrator 8, it's almost all black (not B&W, brown text comes through, but no vector artwork colors) and Illustrator 9 and above don't work at all. – Josh Sep 30 '11 at 14:22
feedback

A bit late, but I had the same problem. For me the workaround was to export the eps-grafik as pdf and reuse this pdf in tcpdf/FPDI with

$num_pages = $pdf->setSourceFile(path_to_file); $template_id = $pdf->importPage(1); //if the grafic is on page 1 $pdf->useTemplate($template_id,$x,$y,$width,$height);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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