TImage32.InvertAlphas

procedure InvertAlphas;


uses Img32, Img32.Fmt.PNG;
...
img := TImage32.Create;
img.LoadFromFile('./green_blur.png');
img.AdjustLuminance(-100);
img.SaveToFile('./black_blur.png');
img.InvertAlphas;
img.SaveToFile('./circle_blur_inv.png');
img.Free;
    
Before:
After: