1
1

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.

bash + ImageMagick > 無地の白画像に複数の文字列を書込む v0.1

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

処理概要

  • 指定のサイズの白画像を用意する
  • 指定の文字列(複数)を指定の形式で画像に書込む

code v0.1

prepareStringImage_180808_exec
# !/usr/bin/env bash

# v0.1 Aug. 08, 2018
#   - overlay strings to a white canvas

set -eu  # just in case

OUTFILE="string_180808.png"
WRKFILE="wrk_180808.png"

###########
# CONFIGURATIONS
YPOSS=("30" "60" "90")  # start y positions
STSTRS=("0" "100" "200")  # start strings (ST)
EDSTRS=("100" "200" "300")  # end strings (ED)
UNIT="cm"
FORMSTR="%s to %s%s"  #format of the string using (ST, ED, UNIT)
CANVAS_SIZE="300x100"
FONT_SIZE="20"
###########

# 1. prepare canvas
convert -size $CANVAS_SIZE xc:white $WRKFILE 

# 2. overlay strings
((maxloop_st0 = ${#YPOSS[*]} - 1))
for idx in $(seq 0 $maxloop_st0)
do
	atxt="$(printf "$FORMSTR" ${STSTRS[idx]} ${EDSTRS[idx]} $UNIT)"
	echo $atxt
	prm="-pointsize $FONT_SIZE -annotate +10+${YPOSS[idx]}"
	convert $prm "$atxt" $WRKFILE $OUTFILE
	mv $OUTFILE $WRKFILE  # for overlay 
done

# 3. rename as output
mv $WRKFILE $OUTFILE

# message
echo "[$OUTFILE] is created"

実行

run
$ bash prepareStringImage_180808_exec 
0 to 100cm
100 to 200cm
200 to 300cm
[string_180808.png] is created

下記はeog string_180808.pngした結果。

qiita.png

関連 > 実装時の参考

関連 > 用途

例として、上記のスクリプトで用意された文字列画像を、リンク先の「画像切出し、合成」処理で合成する。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?