property ObjectBitmap[Index: Integer]: TBitmap; // read only
Indexed read-only property that returns one image page object as a renderable VCL TBitmap (lossy decoded from JPX/CCITT/etc.)
Requires Active to be True. The result is undefined when the index is outside the valid range; pass values in 0 .. BitmapCount - 1 (or use the array's Length for non-counted variants).
The returned record is a snapshot of the value at the time of the call; subsequent edits to the document do not modify previously returned records.
| Index | Zero-based index in the range 0 .. BitmapCount - 1. |
var
I: Integer;
begin
if not Pdf1.Active then Exit;
for I := 0 to Pdf1.BitmapCount - 1 do
begin
// inspect Pdf1.ObjectBitmap[I]
Memo1.Lines.Add(IntToStr(I));
end;
end;