ImageEn, unit iexHelperFunctions

TIEMultiBitmapHelper.Proc

TIEMultiBitmapHelper.Proc


Declaration

property Proc[idx: integer]: TImageEnProc;


Description

Returns a TImageEnProc component, which provides functionality for editing and manipulating images of the selected image.
idx specifies the image to modify.

Note:
 Call Update after using Proc, to update the image
 You must add the iexHelperFunctions unit to your uses clause


Example

// Reverse colors of all images in the TIEMultiBitmapHelper
for i := 0 to multiBmp.Count - 1 do
  multiBmp.Proc[i].Negative();
multiBmp.Update();

// Paint number on each image
for i := 0 to multiBmp.Count - 1 do
  multiBmp.Proc[i].TextOut(Align_text_near_top,
                           Align_text_near_left,
                           '#' + IntToStr( i + 1 ),
                           'Arial',
                           32,
                           clRed,
                           [fsBold]);
multiBmp.Update();