TadvPDFLib Rotating images

Good afternoon,



At 19 july 2017 I asked a question about the TadvPDFLib component. It was about rotating images. The possibilitie was not available at that time.

At this moment it is still missing and I would like it to put it on the wish list for the next updates.



With Kind Regards,

Frans Link

Amsterdam



Some code:



var

pic: TPicture;

p: TadvPDFLib;



begin

P := TadvPDFLib.Create;



try

p.BeginDocument('TestPdf.pdf');

p.NewPage;



pic := TPicture.Create;

pic.LoadFromFile('D:\Delphi XEx Projects\PDM Pdf test\Images\950347A.tif');



//missing is something like this:

p.Graphics.DrawImage(pic, RectF(0, 200, 600, 400), "rotate 90 deg");



p.EndDocument(true);

finally

pic.Free;

p.Free;

end;

Currently very high workload on other ongoing other development projects has unfortunately prevented us from looking into this so far. It is on our todolist for investigation & consideration.