Hello,
I have been using IEJoinBitmaps like this:
destBmp := TIEBitmap.Create();
IEJoinBitmaps(destBmp, iev_IN.IEBitmap, iev_IN2.IEBitmap, false, clWhite);
idx := iemv_OUT.AppendImage;
iemv_OUT.SetImage(idx, destBmp);
iemv_OUT.MIO.Params[0].PDF_Compression := TIOPDFCompression.ioPDF_JPEG;
iemv_OUT.MIO.Params[0].PDF_PaperSize := TIOPDFPaperSize.iepA4;
iemv_OUT.MIO.Params[0].PDF_PaperLayout := TIEPageLayout.ielLandscape;
iemv_OUT.MIO.Params[0].PDF_ImageOptions := [iepioShrinkOnly, iepioCentered];
iemv_OUT.MIO.SaveToFile('c:\temp\test.pdf', 0, false)
destBmp.Free;
now with the last version this changed to TIEBitmap.JoinBitmaps but I'm not sure how to change it.
Before I had the new image into destBmp.
How can I do it now? where does the merged image go?
Thank you