LoadFromFile(s)- loads an image from a BMP file. This method cannot download compressed (RLE-encoded) images;
LoadFromFileEx(s) - loads an image from a BMP file, similar to the previous method, but understands, among other things, loading RLE-encoded images;
SaveToFile(s) - saves the image to a file in BMP format;
LoadFromStream(strm)- loads an image from the stream (from the current position in the stream, and to the end of the image). Loading of RLE-encoded images by this method is not performed;
LoadFromStreamEx(strm) - the same as the previous method, but also loads RLE-encoded images;
SaveToStream(strm) - writes an image to a stream in BMP format;
LoadFromResourceID(inst, resID) - loads an image from an application resource or another executable file (as determined by the inst parameter), by the numeric resource identifier resID;
LoadFromResourceName(inst, s) - loads an image from a resource by resource name;
CopyToClipboard - copies the image to the Windows clipboard;
PasteFromClipboard - pastes an image from the clipboard.