lang_exif.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: lang_exif.php 27449 2012-02-01 05:32:35Z zhangguosheng $
  7. */
  8. if(!defined('IN_DISCUZ')) {
  9. exit('Access Denied');
  10. }
  11. $lang = array(
  12. 'unknown' => '未知',
  13. 'resolutionunit' => array('', '', '英寸', '厘米'),
  14. 'exposureprogram' => array('未定义', '手动', '标准程序', '光圈先决', '快门先决', '景深先决', '运动模式', '肖像模式', '风景模式'),
  15. 'meteringmode' => array(
  16. '0' => '未知',
  17. '1' => '平均',
  18. '2' => '中央重点平均测光',
  19. '3' => '点测',
  20. '4' => '分区',
  21. '5' => '评估',
  22. '6' => '局部',
  23. '255' => '其他'
  24. ),
  25. 'lightsource' => array(
  26. '0' => '未知',
  27. '1' => '日光',
  28. '2' => '荧光灯',
  29. '3' => '钨丝灯',
  30. '10' => '闪光灯',
  31. '17' => '标准灯光A',
  32. '18' => '标准灯光B',
  33. '19' => '标准灯光C',
  34. '20' => 'D55',
  35. '21' => 'D65',
  36. '22' => 'D75',
  37. '255' => '其他'
  38. ),
  39. 'img_info' => array ('文件信息' => '没有图片EXIF信息'),
  40. 'FileName' => '文件名',
  41. 'FileType' => '文件类型',
  42. 'MimeType' => '文件格式',
  43. 'FileSize' => '文件大小',
  44. 'FileDateTime' => '时间戳',
  45. 'ImageDescription' => '图片说明',
  46. 'auto' => '自动',
  47. 'Make' => '制造商',
  48. 'Model' => '型号',
  49. 'Orientation' => '方向',
  50. 'XResolution' => '水平分辨率',
  51. 'YResolution' => '垂直分辨率',
  52. 'Software' => '创建软件',
  53. 'DateTime' => '修改时间',
  54. 'Artist' => '作者',
  55. 'YCbCrPositioning' => 'YCbCr位置控制',
  56. 'Copyright' => '版权',
  57. 'Photographer'=> '摄影版权',
  58. 'Editor' => '编辑版权',
  59. 'ExifVersion' => 'Exif版本',
  60. 'FlashPixVersion' => 'FlashPix版本',
  61. 'DateTimeOriginal' => '拍摄时间',
  62. 'DateTimeDigitized'=> '数字化时间',
  63. 'Height' => '拍摄分辨率高',
  64. 'Width' => '拍摄分辨率宽',
  65. 'ApertureValue' => '光圈',
  66. 'ShutterSpeedValue' => '快门速度',
  67. 'ApertureFNumber' => '快门光圈',
  68. 'MaxApertureValue' => '最大光圈值',
  69. 'ExposureTime' => '曝光时间',
  70. 'FNumber' => 'F-Number',
  71. 'MeteringMode' => '测光模式',
  72. 'LightSource' => '光源',
  73. 'Flash' => '闪光灯',
  74. 'ExposureMode' => '曝光模式',
  75. 'manual' => '手动',
  76. 'WhiteBalance' => '白平衡',
  77. 'ExposureProgram' => '曝光程序',
  78. 'ExposureBiasValue' => '曝光补偿',
  79. 'ISOSpeedRatings' => 'ISO感光度',
  80. 'ComponentsConfiguration' => '分量配置',
  81. 'CompressedBitsPerPixel' => '图像压缩率',
  82. 'FocusDistance' => '对焦距离',
  83. 'FocalLength' => '焦距',
  84. 'FocalLengthIn35mmFilm' => '等价35mm焦距',
  85. 'UserCommentEncoding' => '用户注释编码',
  86. 'UserComment' => '用户注释',
  87. 'ColorSpace' => '色彩空间',
  88. 'ExifImageLength' => 'Exif图像宽度',
  89. 'ExifImageWidth' => 'Exif图像高度',
  90. 'FileSource' => '文件来源',
  91. 'SceneType' => '场景类型',
  92. 'ThumbFileType' => '缩略图文件格式',
  93. 'ThumbMimeType' => '缩略图Mime格式'
  94. );
  95. ?>