



Collapse All
Syntax| HRESULT TransformImage ( LONG imageNumber, ImageTransformation transformation ) |
Remarks
Example{ PDF object is supposed to be created }
ind := PDF.AddImageFromFile('ClipBoard_IE.gif');
PDF.TransformImage(ind, itFlip);
PDF.TransformImage(ind, itNegative);
PDF.ShowImage(ind, 10, 10);
PDF.SaveToFile('test.pdf', true);
// PDF object is supposed to be created
long ind = PDF->AddImageFromFile("ClipBoard_IE.gif");
PDF->TransformImage(ind, itFlip);
PDF->TransformImage(ind, itNegative);
PDF->ShowImage(ind, 10, 10);
PDF->SaveToFile("test.pdf", true);
// PDF object is supposed to be created
long ind = PDF.AddImageFromFile("ClipBoard_IE.gif");
PDF.TransformImage(ind, ImageTransformation.itFlip);
PDF.TransformImage(ind, ImageTransformation.itNegative);
PDF.ShowImage(ind, 10, 10);
PDF.SaveToFile("test.pdf", true);
' PDF object is supposed to be created
ind = PDF.AddImageFromFile("ClipBoard_IE.gif")
PDF.TransformImage ind, 0 'ImageTransformation.itFlip
PDF.TransformImage ind, 1 'ImageTransformation.itNegative
PDF.ShowImage ind, 10, 10
PDF.SaveToFile "test.pdf", true
See Also