IWuQuantizer.cs 186 B

123456789
  1. using System.Drawing;
  2. namespace TEAMModelOS.SDK.PngQuant
  3. {
  4. public interface IWuQuantizer
  5. {
  6. Image QuantizeImage(Bitmap image, int alphaThreshold, int alphaFader);
  7. }
  8. }