Used internally to render a TIEBitmap in TImageEnView object.
The PixelFormat of Dest must be pf24bit. The source image can be any PixelFormat.
If EnableAlpha is true, then rendering will support the AlphaChannel, i.e. painting will not occur for areas of Alpha < 255
Note: ◼A simpler version is available via RenderToTBitmapEx ◼To draw to an image of ie32RGB pixel format, use MergeWithAlpha
Opacity vs Transparency
Both the Opacity and Transparency parameters provide the same functionality. Transparency is the traditional ImageEn value, whereas Opacity provides easier PSD compatibility.
While they can be used in combination, generally only one will be used, i.e. leave Opacity=1 and make use of transparency, or alternatively, leave Transparency=255 and make use of Opacity. For example, for 50% opacity: Transparency = 255 and Opacity = 0.5, or Transparency = 128 and Opacity = 1.0