Note: ◼OnImageDraw and OnImageDraw2 are identical, except that OnImageDraw2 includes a ThumbRect parameter to return the rectangle of the image thumbnail ◼You can use ThumbWidth and ThumbHeight to get the area of the thumbnail box
// Display the image index and sizes on bottom of the thumbnail // Ensure you have set the BottomGap property procedure TForm1.ImageEnMView1ImageDraw(Sender: TObject; idx: Integer; Left, Top: Integer; Canvas: TCanvas); begin with canvas do begin Font.Height := 15; Font.Color := clWhite; TextOut(Left, Top + ImageEnMView1.ThumbHeight - ImageEnMView1.BottomGap + 2, IntToStr(idx)); TextOut(Left, Top, IntToStr(ImageEnMView1.ImageWidth[idx]) + 'x' + IntToStr(ImageEnMView1.ImageHeight[idx])); end; end;
// Output the image size in the bottom left of the thumbnail (with a semi transparent background) procedure TMainForm.ImageEnMView1ImageDraw2(Sender: TObject; idx, Left, Top: Integer; ImageRect: TRect; Canvas: TCanvas); const Right_Margin = 8; Bottom_Margin = 8; Text_Margin = 2; var x1, y1, x2, y2: integer; iec: TIECanvas; ss: string; sz: TSize; begin ss := format( '%d x %d', [ ImageEnMView1.ImageWidth[idx], ImageEnMView1.ImageHeight[idx] ]);