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.
27 lines
760 B
27 lines
760 B
// 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
|
|
{
|
|
/// <summary>
|
|
/// The optioas for decoding png images
|
|
/// </summary>
|
|
internal interface IPngDecoderOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether the metadata should be ignored when the image is being decoded.
|
|
/// </summary>
|
|
bool IgnoreMetadata { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the encoding that should be used when reading text chunks.
|
|
/// </summary>
|
|
Encoding TextEncoding { get; }
|
|
}
|
|
}
|
|
|