Hi all, I am using Lazarus 2.2.4 on Windows and I am not able to export LazReport as PDF using PowerPDF (latest version from OPM).
The library raise the exception in the procedure below. I try to use the same report using a previous version and it works fine.
Any suggestions to debug the issue ?
Many thanks
procedure TPdfCanvasAttribute.SetWordSpace(Value: Single);
begin
if Value < 0 then
raise EPdfInvalidValue.Create('SetWordSpace --invalid word space');
if Value <> FWordSpace then
FWordSpace := Value;
end;