ExifTagID.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. namespace PaintDotNet
  2. {
  3. public enum ExifTagID
  4. : short
  5. {
  6. // Tags relating to image data structure
  7. ImageWidth = 256,
  8. ImageLength = 257,
  9. BitsPerSample = 258,
  10. Compression = 259,
  11. PhotometricInterpretation = 262,
  12. Orientation = 274,
  13. SamplesPerPixel = 277,
  14. PlanarConfiguration = 284,
  15. YCbCrSubSampling = 530,
  16. YCbCrPositioning = 531,
  17. XResolution = 282,
  18. YResolution = 283,
  19. ResolutionUnit = 296,
  20. // Tags relating to recording offset
  21. StripOffsets = 273,
  22. RowsPerStrip = 278,
  23. StripByteCounts = 279,
  24. JPEGInterchangeFormat = 513,
  25. JPEGInterchangeFormatLength = 514,
  26. // Tags relating to image data characteristics
  27. TransferFunction = 301,
  28. WhitePoint = 318,
  29. PrimaryChromaticities = 319,
  30. YCbCrCoefficients = 529,
  31. ReferenceBlackWhite = 532,
  32. // Other tags
  33. DateTime = 306,
  34. ImageDescription = 270,
  35. Make = 271,
  36. Model = 272,
  37. Software = 305,
  38. Artist = 315,
  39. Copyright = unchecked((short)33432)
  40. }
  41. }