mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
13 lines
488 B
C#
13 lines
488 B
C#
namespace FileFlows.ImageNodes.Images;
|
|
|
|
public class Constants
|
|
{
|
|
internal const string IMAGE_FORMAT_BMP = "Bmp";
|
|
internal const string IMAGE_FORMAT_GIF = "Gif";
|
|
internal const string IMAGE_FORMAT_JPEG = "Jpeg";
|
|
internal const string IMAGE_FORMAT_PBM = "Pbm";
|
|
internal const string IMAGE_FORMAT_PNG = "Png";
|
|
internal const string IMAGE_FORMAT_TIFF = "Tiff";
|
|
internal const string IMAGE_FORMAT_TGA = "Tga";
|
|
internal const string IMAGE_FORMAT_WEBP = "WebP";
|
|
} |