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;