namespace ImageSharp.Benchmarks { using ImageSharp.Formats; /// /// The image benchmark base class. /// public abstract class BenchmarkBase { /// /// Initializes a new instance of the class. /// protected BenchmarkBase() { // Add Image Formats Configuration.Default.AddImageFormat(new JpegFormat()); Configuration.Default.AddImageFormat(new PngFormat()); Configuration.Default.AddImageFormat(new BmpFormat()); Configuration.Default.AddImageFormat(new GifFormat()); } } }