win32dibd.inc 532 B

1234567891011121314151617
  1. Type
  2. TWin32DIB = Class(TObject)
  3. Private
  4. FBitmapInfo : PBITMAPINFO;
  5. FPixels : Pointer;
  6. FFormat : TPTCFormat;
  7. FWidth, FHeight, FPitch : Integer;
  8. Public
  9. Constructor Create(AWidth, AHeight : Integer);
  10. Destructor Destroy; Override;
  11. Property BMI : PBITMAPINFO Read FBitmapInfo;
  12. Property Width : Integer Read FWidth;
  13. Property Height : Integer Read FHeight;
  14. Property Pitch : Integer Read FPitch;
  15. Property Format : TPTCFormat Read FFormat;
  16. Property Pixels : Pointer Read FPixels;
  17. End;