// Copyright (c) Six Labors and contributors. // Licensed under the Apache License, Version 2.0. using System; using System.Collections.Generic; using System.IO; using System.Text; using SixLabors.ImageSharp.PixelFormats; namespace SixLabors.ImageSharp.Formats.Png { /// /// The optioas for decoding png images /// internal interface IPngDecoderOptions { /// /// Gets a value indicating whether the metadata should be ignored when the image is being decoded. /// bool IgnoreMetadata { get; } /// /// Gets the encoding that should be used when reading text chunks. /// Encoding TextEncoding { get; } } }