aboutsummaryrefslogtreecommitdiff
path: root/LittleYe233/APPENDIX/python_exif_removal.md
diff options
context:
space:
mode:
authorLittle_Ye233 <30514318+LittleYe233@users.noreply.github.com>2022-02-03 09:57:43 +0800
committerLittle_Ye233 <30514318+LittleYe233@users.noreply.github.com>2022-02-03 10:12:41 +0800
commit6e57ab2a74fbb757d9bb4df43d54eacbcbe471d0 (patch)
treed2921861ff670e1fee01614524736b6cb2d7568c /LittleYe233/APPENDIX/python_exif_removal.md
parenta93f8fbf66961f16c87e7265a88f5943f6364998 (diff)
downloadDress-6e57ab2a74fbb757d9bb4df43d54eacbcbe471d0.tar
Dress-6e57ab2a74fbb757d9bb4df43d54eacbcbe471d0.tar.gz
Dress-6e57ab2a74fbb757d9bb4df43d54eacbcbe471d0.tar.bz2
Dress-6e57ab2a74fbb757d9bb4df43d54eacbcbe471d0.zip
Update README and reconstruct APPENDIX
Diffstat (limited to 'LittleYe233/APPENDIX/python_exif_removal.md')
-rw-r--r--LittleYe233/APPENDIX/python_exif_removal.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/LittleYe233/APPENDIX/python_exif_removal.md b/LittleYe233/APPENDIX/python_exif_removal.md
new file mode 100644
index 0000000..9d94f7c
--- /dev/null
+++ b/LittleYe233/APPENDIX/python_exif_removal.md
@@ -0,0 +1,29 @@
+# LittleYe233/Dress 附录 - 使用 Python 去除图片的 EXIF 信息
+
+可以使用 `pillow` 模块。
+
+在终端中执行:
+
+```bash
+pip install pillow
+```
+
+在 Python 解释器中执行:
+
+```python
+from PIL import Image
+img = Image.open('/path/to/image.jpg')
+# print(img.size) # 输出图片大小
+# img.resize(NEW_SIZE) # 调整图片大小
+img.save('/path/to/new_image.jpg') # 重新保存,此时 EXIF 信息已被去除
+```
+
+检查图片的 EXIF 信息:
+
+```text
+$ file image.jpg
+image.jpg: JPEG image data, Exif standard: [TIFF image data, big-endian, direntries=14, height=4000, bps=0, manufacturer=HUAWEI, model=ART-AL00x, orientation=[*0*], xresolution=200, yresolution=208, resolutionunit=2, software=ARTH-AL00 9.1.1.204(C00E95R3P6), datetime=2021:06:17 21:36:14, width=3000], baseline, precision 8, 3000x4000, components 3
+
+$ file new_image.jpg
+new_image.jpg: JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 3000x4000, components 3
+``` \ No newline at end of file