naps2/NAPS2.Images.Gtk/TiffTag.cs
Ben Olden-Cooligan 76a8778752 Gtk: Tiff saving
2022-09-17 10:46:31 -07:00

22 lines
447 B
C#

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
}