In the ImageEnView1 different formats of images can be loaded. Suppose I load a BMP of JPG file into the background layer.
What will happen if I would save the file as: ImageEnView1.LayersSaveMergedTo( 'd:\Merged.png' ); OR ImageEnView1.LayersSaveMergedTo( 'd:\Merged.tif' ); Without using the SaveImageEnDialog
Will the file internally be an actual PNG-file of TIF-file, or will it still be in the original internal format (f.e. BMP) and is only the file-extention changed in the name of the file?
As Wesley indicated, saving to a different image format does not change the in-memory bitmap in any way except for updating the filetype and filename properties.
Great. I only load bmp, png, jpeg images and only save to PNG. Most important is that the PNG is saved as an actual PNG internally and I've tested it by opening the file in a few other imageeditors. It works perfectly. Thanks.