ImageEn, unit iexBitmaps

TIOParams.PSD_HasMergedImage

TIOParams.PSD_HasMergedImage


Declaration

property PSD_HasMergedImage: Boolean;


Description

Returns true if the PSD contains a merged image. Set to false to save PSD files without a merged image.

Note:
 Saving a PSD with PSD_HasMergedImage=False is the same as saving in Photoshop with "Maximum Compatibility" turned off. It is useful for creating smaller files.
 You can only save with PSD_HasMergedImage=False from a TImageEnView


Example

// Save PSD file with maximum compatibility
ImageEnView1.IO.Params.PSD_HasMergedImage := True;
ImageEnView1.IO.SaveToFile( 'D:\MaxComp.psd' );

// Save PSD file with smaller file size
ImageEnView1.IO.Params.PSD_HasMergedImage := False;
ImageEnView1.IO.SaveToFile( 'D:\NoComp.psd' );