0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python 3 (v3.4.8) > JSONファイル読込み > 3セットのimageごとの各項目を標準出力する

Last updated at Posted at 2018-08-08
動作環境
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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?