mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
589 B
21 lines
589 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ImageSharp.Tests.TestUtilities.Integration
|
|
{
|
|
using System.IO;
|
|
|
|
using ImageSharp.Formats;
|
|
using ImageSharp.PixelFormats;
|
|
|
|
public class ReferenceEncoder : IImageEncoder
|
|
{
|
|
public void Encode<TPixel>(Image<TPixel> image, Stream stream, IEncoderOptions options)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
System.Drawing.Bitmap sdBitmap = IntegrationTestUtils.ToSystemDrawingBitmap(image);
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|