将图片转存为其它颜色格式(GDI+)
作者:互联网
将图片转存为其它颜色格式(GDI+)
posted on 2011-07-20 21:09 万一 阅读(3683) 评论(5) 编辑 收藏
uses GdiPlus; procedure TForm1.Button1Click(Sender: TObject); var img: IGPImage; bit: IGPBitmap; g: IGPGraphics; begin img := 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;
posted on 2011-07-20 21:09 万一 阅读(3683) 评论(5) 编辑 收藏
标签:temp,img,Create,Width,png,格式,GDI,bit,转存 来源: https://blog.51cto.com/u_14617575/2795038