property ObjectBitmap[Index: Integer]: TBitmap; // read only
하나의 image page object를 렌더 가능한 VCL TBitmap으로 반환하는 indexed read-only property입니다 (JPX/CCITT/etc.에서 손실 디코딩)
Active가 True여야 합니다. index가 유효 범위를 벗어나면 결과는 정의되지 않으므로 0 .. BitmapCount - 1 범위의 값을 전달하세요. counted variant가 아닌 경우에는 배열의 Length를 사용해도 됩니다
반환된 값은 호출 시점의 snapshot입니다. 이후 문서를 편집해도 이미 반환된 값은 바뀌지 않습니다
| 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;