⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exifproperty.cs

📁 本系统是在asp版《在线文件管理器》的基础上设计制作
💻 CS
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
//     Copyright (c) Telligent Systems Corporation.  All rights reserved.
// </copyright> 
//------------------------------------------------------------------------------

namespace CommunityServer.Galleries.Components
{
	public enum ExifProperty
	{
		#region TIFF Rev. 6.0 Attribute Information
		// A. Tags relating to image data structure
		ImageWidth = 256,
		ImageLength = 257,
		BitsPerSample = 258,
		Compression = 259,
		PhotometricInterpretation = 262,
		Orientation = 274,
		SamplesPerPixel = 277,
		PlanarConfiguration = 284,
		YCbCrSubSampling = 530,
		YCbCrPositioning = 531,
		XResolution = 282,
		YResolution = 283,
		ResolutionUnit = 296,

		// B. Tags relating to recording offset
		StripOffsets = 273,
		RowsPerStrip = 278,
		StripByteCounts = 279,
		JPEGInterchangeFormat = 513,
		JPEGInterchangeFormatLength = 514,

		// C. Tags relating to image data characteristics
		TransferFunction = 301,
		WhitePoint = 318,
		PrimaryChromaticities = 319,
		YCbCrCoefficients = 529,
		ReferenceBlackWhite = 532,

		// D. Other tags
		DateTime = 306,
		ImageDescription = 270,
		Make = 271,
		Model = 272,
		Software = 305,
		Artist = 315,
		Copyright = 33432,
		#endregion

		#region Exif IFD Attribute Information
		// A. Tags Relating to Version
		ExifVersion = 36864,
		FlashPixVersion = 40960,

		// B. Tag Relating to Image Data Characteristics
		ColorSpace = 40961,

		// C. Tags Relating to Image Configuration
		ComponentsConfiguration = 37121,
		CompressedBitsPerPixel = 37122,
		PixelXDimension = 40962,
		PixelYDimension = 40963,

		// D. Tags Relating to User Information
		MakerNote = 37500,
		UserComment = 37510,

		// E. Tag Relating to Related File Information
		RelatedSoundFile  = 40964,

		// F. Tags Relating to Date and Time
		DateTimeOriginal  = 36867,
		DateTimeDigitized = 36868,
		SubsecTime  = 37520,
		SubsecTimeOriginal = 37521,
		SubsecTimeDigitized = 37522,

		// G. Tags Relating to Picture-Taking Conditions
		ExposureTime = 33434,
		FNumber = 33437,
		ExposureProgram = 34850,
		SpectralSensitivity = 34852,
		ISOSpeedRatings = 34855,
		OECF = 34856,
		ShutterSpeedValue = 37377,
		ApertureValue = 37378,
		BrightnessValue = 37379,
		ExposureBiasValue = 37380,
		MaxApertureValue = 37381,
		SubjectDistance = 37382,
		MeteringMode = 37383,
		LightSource = 37384,
		Flash = 37385,
		FocalLength = 37386,
		SubjectArea = 37396,
		FlashEnergy =41483,
		SpatialFrequencyResponse = 41484,
		FocalPlaneXResolution = 41486,
		FocalPlaneYResolution = 41487,
		FocalPlaneResolutionUnit = 41488,
		SubjectLocation = 41492,
		ExposureIndex = 41493,
		SensingMethod = 41495,
		FileSource = 41728,
		SceneType = 41729,
		CFAPattern = 41730,
		CustomRendered = 41985,
		ExposureMode = 41986,
		WhiteBalance = 41987,
		DigitalZoomRatio = 41988,
		FocalLengthIn35mmFilm = 41989,
		SceneCaptureType = 41990,
		GainControl = 41991,
		Contrast = 41992,
		Saturation = 41993,
		Sharpness = 41994,
		DeviceSettingDescription = 41995,
		SubjectDistanceRange = 41996,

		// H. Other Tags
		ImageUniqueID = 42016,

		// H.Interoperability IFD Attribute Information
		InteroperabilityIndex = 20545,
		InteroperabilityVersion = 20546,
		RelatedImageWidth = 4097,
		RelatedImageLength = 4098,
		#endregion

		#region Windows Attributes

		WindowsTitle = 0x9c9b,
		WindowsComments = 0x9C9C,
		WindowsAuthor = 0x9C9D,
		WindowsKeywords = 0x9C9E,
		WindowsSubject = 0x9C9F,

		#endregion

	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -