Skip to content

Change a specific color to another color inside a PNG file (in Delphi)

License

Notifications You must be signed in to change notification settings

mrGlasses/DelphiChangeColorPNG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

DelphiChangeColorPNG

Change a specific color to another color inside a PNG file (in Delphi)

Usage

var
  Apng	   : TPNGImage;
  Acv, Acn : array of TColor;
begin

  Acv  := [clBlack, clRed];
  Acn  := [clWhite, clBlue];
  Apng := TImageToTPngImage(Image1);

  MultipleColorChangePNG(Apng, Acv, Acn);

  Image1.Picture.Graphic := Apng;
  Apng := nil;

About

Change a specific color to another color inside a PNG file (in Delphi)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages