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.
28 lines
948 B
28 lines
948 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace SixLabors.ImageSharp.Formats.Pbm
|
|
{
|
|
/// <summary>
|
|
/// Contains PBM constant values defined in the specification.
|
|
/// </summary>
|
|
internal static class PbmConstants
|
|
{
|
|
/// <summary>
|
|
/// The maximum allowable pixel value of a ppm image.
|
|
/// </summary>
|
|
public const ushort MaxLength = 65535;
|
|
|
|
/// <summary>
|
|
/// The list of mimetypes that equate to a ppm.
|
|
/// </summary>
|
|
public static readonly IEnumerable<string> MimeTypes = new[] { "image/x-portable-pixmap", "image/x-portable-anymap", "image/x-portable-arbitrarymap" };
|
|
|
|
/// <summary>
|
|
/// The list of file extensions that equate to a ppm.
|
|
/// </summary>
|
|
public static readonly IEnumerable<string> FileExtensions = new[] { "ppm", "pbm", "pgm", "pam" };
|
|
}
|
|
}
|
|
|