将图片转存为其它颜色格式(GDI+)
生活随笔
收集整理的這篇文章主要介紹了
将图片转存为其它颜色格式(GDI+)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為什么80%的碼農都做不了架構師?>>> ??
uses GdiPlus;procedure TForm1.Button1Click(Sender: TObject); varimg: IGPImage;bit: IGPBitmap;g: IGPGraphics; beginimg := TGPImage.Create('c:\temp\01.png');bit := TGPBitmap.Create(img.Width, img.Height, PixelFormat1bppIndexed);g := TGPGraphics.Create(bit);g.DrawImage(img, 0, 0, img.Width, img.Height);bit.Save('c:\temp\02.png', TGPImageFormat.Png); end;
轉載于:https://my.oschina.net/hermer/blog/319276
總結
以上是生活随笔為你收集整理的将图片转存为其它颜色格式(GDI+)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: hasOwnProperty()
- 下一篇: GDI+ 学习记录(10): 线性渐变画