Hi
I'm loading a GIF of a weather chart from a URL and then trying to rotate it by 15° (to make the Greenwich meridian vertical). Simple enough but this code fails to do it.
ImageEnView.IO.LoadFromURL(url);
if ImageEnView.IO.Aborting then
ImageEnView.IO.LoadFromFilePNG('C:\Images\missing.png')
ImageEnView.Proc.Rotate(15,True,ierBicubic,clWhite);
ImageEnView.Update;
The strange thing is that the PNG image that I load when the download fails is rotated!
Bruce.