Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Delphi中TBitmap的PixelFormat默认值是多少?每次创建 TBitmap 时都需要指定 PixelFormat 吗?
例如,
var img: TBitmap; begin img := TBitmap.Create; img.PixelFormat := pf32bit; // or pf24bit? ... ... end;
默认值为 pfDevice(等于零)。