20161220

全国教师管理信息系统填报 照片处理,使用 imagemagick






1. 通知正文截选
各位老师大家好!根据教育部要求,我校全国教师管理信息系统填报工作以及开展,请大家登陆http://bwyxjs.emis.edu.cn:8082/selfservice/index。 相关要求,首次填报将于12月10日完成。时间紧,任务重,希望大家支持和谅解,按时完成任务。
2. 照片要求
26mm*32mm, >=150dpi, <60k jpg="" p="">

<60k jpg="" p="">
3. 操作流程
如果看不懂下述操作流程,把下面的内容发给您的学生,请他帮助。如果他说“不会”,请他提高信息化素养,或者使用PS。
3.1 下载 imagemagick
[http://www.imagemagick.org/script/binary-releases.php]

[https://www.imagemagick.org/download/binaries/ImageMagick-7.0.3-8-Q16-x64-dll.exe]
3.2 剪切
准备原始照片。
使用windows画图工具(win+r, mspaint)把原始照片切成 宽:高 为 26:32,另存为 crop.png
3.3 转换
使用imagemagick转换照片为指定规格。
(1) 进入命令行

Win+r, cmd
(2) 进入照片所在目录
f:;cd \20161201
(3)转换
convert -density 150 -units pixelsperinch -resize 154x189 -quality 100% crop.png output1.jpg
4.4 结束
output1.jpg就是符合 全国教师管理信息系统 要求的照片。
4. 解释
如果看不懂上述操作流程,把上面的内容发给您的学生,请他帮助。如果他说“不会”,请他提高信息化素养,或者使用PS。
如果看不懂上述操作流程,本节也不会看懂的。

剪切这一步很难自动处理,需要能AI找到人脸。


4.1 size
厘米->像素 换算
宽度 =26/25.4*150
高度 =150/25.4*32
precise_image_width_in_mm=$( echo \
"$image_width_px / $resolution * 25.4" \
| bc ‐l )
[http://stackoverflow.com/questions/11773688/how-to-change-the-print-size-of-an-image-in-mm-on-command-line]
4.2 dpi
-density 150 -units
4.3 quality
如果文件尺寸过大,可以再压缩。
4.4 unit
可以转换为以公制厘米为单位。此步骤可选,并非必须。
convert output1.jpg -units pixelspercentimeter output2.jpg
4.5 identify
检验转换结果。此步骤可选,并非必须。
4.5.1 英制
F:\20161201>identify -verbose out
 
put.jpg | head
 
Image: output.jpg
 
  Format: JPEG (Joint Photographic Experts Group JFIF format)
 
  Class: DirectClass
 
  Geometry: 154x189+0+0
 
  Resolution: 150x150
 
  Print size: 1.02667x1.26
 
  Units: PixelsPerInch
 
  Type: TrueColor
 
  Endianess: Undefined
 
  Colorspace: RGB
4.5.2 公制
F:\20161201>identify -verbose output2.jpg | head
 
Image: output2.jpg
 
  Format: JPEG (Joint Photographic Experts Group JFIF format)
 
  Class: DirectClass
 
  Geometry: 154x189+0+0
 
  Resolution: 59x59
 
  Print size: 2.61017x3.20339
 
  Units: PixelsPerCentimeter
 
  Type: TrueColor
 
  Endianess: Undefined
 
  Colorspace: RGB
4.5.3 mspaint检验

4.5.4 资源管理器检验
150dpi下,宽度154像素,合26毫米;高度189像素,合32毫米。

5. 后记
据说照片是可选的,不是必填项 😀
PDB老师说acdsee就行。
LXL老师说Photoshop可以。
李记者说用 gimp可以。
————————————————————
博客会手工同步到以下地址:
[http://zhuanlan.zhihu.com/younggift]
[https://younggift.net/]
[http://blog.csdn.net/younggift]
[http://giftdotyoung.blogspot.com]

No comments: