動作環境
CentOS release 6.9 (Final)
GNU Bash-4.1
ImageMagick Version: ImageMagick 6.7.2-7 2017-03-22 Q16
Python 3.4.8
関連
処理概要
- JSONファイルに画像切出しの設定が用意されている
- 設定はimage1, image2, image3のように用意されている
- 各imageXにおいて以下の設定がある
- srcPath
- cropSize
- srcLeftTop
- dstLeftTop
- image1, .. image3の名前を知らなくても、それぞれに対して各項目を取得したい
code v0.1
printPropJSONFile_180808.py
import json
# v0.1 Aug. 08, 2018
# - read from JSON FILE to print properties for each imageX
JSONFILE = 'config.json'
with open(JSONFILE) as reader:
json_data = json.load(reader)
# type(json_data)
for images in json_data:
# print(images)
for akey in images.keys():
print('---')
print('key=%s' % akey)
adict = dict(images[akey])
print(adict['srcPath'])
print(adict['cropSize'])
print(adict['srcLeftTop'])
print(adict['dstLeftTop'])
JSONファイル
config.json
[
{
"image1": {
"srcPath": "DIR1/out.png",
"cropSize": "100x100",
"srcLeftTop": "+10+10",
"dstLeftTop": "+50+10"
},
"image2": {
"srcPath": "DIR2/out.png",
"cropSize": "80x80",
"srcLeftTop": "+10+10",
"dstLeftTop": "+50+120"
},
"image3": {
"srcPath": "DIR3/out.png",
"cropSize": "110x110",
"srcLeftTop": "+30+30",
"dstLeftTop": "+140+120"
}
}
]
実行
run
$ python3 printPropJSONFile_180808.py
---
key=image1
DIR1/out.png
100x100
+10+10
+50+10
---
key=image3
DIR3/out.png
110x110
+30+30
+140+120
---
key=image2
DIR2/out.png
80x80
+10+10
+50+120