sharperang/libdither/IDither.cs

9 lines
144 B
C#

using System.Drawing;
namespace libdither {
public interface IDither {
uint BlackPoint { get; set; }
Bitmap Dither(Bitmap input);
}
}