Graphic not getting exported in PDF - XE7

I am using the Beta version 5.1.8 of Fast Reports for XE7 and I have a logo in the bottom left that is showing on the report but when I export to PDF there is nothing there.

Attached is the graphic and also the report containing the graphic.

Comments

  • edited 3:00PM
    I get the same problem using the version 5.1.8 for Delphi 2010. Sometimes the logo is exported but not as it should be. Also, the PDF is very large in size (6.11 MB instead of 211 KB).
  • gpigpi
    edited 3:00PM
    Change frxExportPDF.pas
    dots := TempBitmap.ScanLine[iy];
    for ix := 0 to TempBitmap.Width - 1 do
      begin
        if dots[ix].Alpha <> 0 then //change
    
  • edited 3:00PM
    Perfect. Tried this and it works fine.
  • edited 3:00PM
    Sometimes the logo is exported but not as it should be. Also, the PDF is very large in size (6.11 MB instead of 211 KB)....???
  • edited 3:00PM
    gpi wrote: »
    Change frxExportPDF.pas
    dots := TempBitmap.ScanLine[iy];
    for ix := 0 to TempBitmap.Width - 1 do
      begin
        if dots[ix].Alpha <> 0 then //change
    
    Someone could spend frxExportPDF.pas file to correct it and compile it as my version is standard without source.
    Or frxExportPDF.dcu for XE6 and XE7
  • gpigpi
    edited 3:00PM
    FR 5.1.10 exports images to PDF
  • edited 3:00PM
    gpi wrote: »
    FR 5.1.10 exports images to PDF
    Thanks

Leave a Comment