naps2/NAPS2.Images.Gtk/TiffTag.cs

22 lines
447 B
C#
Raw Normal View History

2022-09-17 20:46:31 +03:00
namespace NAPS2.Images.Gtk;
internal enum TiffTag
{
SubFileType = 254,
ImageWidth = 256,
ImageHeight = 257,
BitsPerSample = 258,
Compression = 259,
Photometric = 262,
DocumentName = 269,
ImageDescription = 270,
Make = 271,
Model = 272,
Orientation = 274,
SamplesPerPixel = 277,
XResolution = 282,
YResolution = 283,
PlanarConfig = 284,
ResolutionUnit = 296,
ExtraSamples = 338
}