Delphi XE5 x64 Export PDF

edited December 2014 in FastReport VCL 5
In Delphi XE5:
Creating a simple new VCL project and add a PictureView with a image *.BMP or BarCode.

When I export to PDF generates an access violation.

Occurred after upgrading to version 5.1.11,
Today we installed the 5.1.12 version and the problem continues.

Some can help me?
Thank you.

Comments

  • gpigpi
    edited 6:11AM
    Modify frxExportPDF.pas:
    Write(pdf, 'stream'#13#10); // 'stream'#10 is also valid
    if FProtection then
    CryptStream(XObjectStream, pdf, FEncKey, XObjectId)
    else
    pdf.CopyFrom(XObjectStream, 0);
    Write(pdf, #13#10'endstream'#13#10);
    Inc(FPicTotalSize, XObjectStream.Size);
    Writeln(pdf, 'endobj');
    end;
    finally
    XObjectStream.Free;
    if IsAlpha = True then XMaskStream.Free; //change this line
    end;
    

Leave a Comment