Browse Source

Update: forgot to implement Optimized property

pull/1574/head
Peter Tribe 7 years ago
parent
commit
9e7fd61ae4
  1. 5
      src/ImageSharp/Formats/Png/PngEncoder.cs

5
src/ImageSharp/Formats/Png/PngEncoder.cs

@ -62,6 +62,11 @@ namespace SixLabors.ImageSharp.Formats.Png
/// </summary>
public PngInterlaceMode? InterlaceMethod { get; set; }
/// <summary>
/// Gets a value indicating whether this instance should skip certain chunks to decrease file size
/// </summary>
public bool Optimized { get; }
/// <summary>
/// Encodes the image to the specified stream from the <see cref="Image{TPixel}"/>.
/// </summary>

Loading…
Cancel
Save