57
58

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.

大量のダミー連番画像を、一行で作成する方法

Last updated at Posted at 2014-04-09

[2014-09-02追記] 記事中の画像生成サービスが死んでたので、こっちだと動きます

curl -O 'http://placeimg.com/500/480/tech/[0-4].jpg'

あるいは

curl -O 'http://placehold.it/350x150&text=[1-4].png'

curlは連番でダウンロードできる + ダミー画像ジェネレータサービスを使う

curl -O 'http://cambelt.co/400x150/[0-4].png'

とすると

  • 400x150
  • 0.png, 1.png, 2.png, 3.png, 4.png

がダウンロードされます。

こんな感じ

解説 curlで連番

連番にしたいところを[0-100]みたいにするといけます。ガチ便利〜!

解説 ダミー画像ジェネレータサービスの概要

基本は200x100とかを指定すれば画像ができます。

<img src="http://cambelt.co/200x100" />

いろいろオプションも指定できて、こんな画像もすぐできてガチ便利〜!

<img src="http://cambelt.co/400x160/UNKO?font=Federicka&color=234653,eeeeee&font_size=120"> 

連番を複数入れたりもできる

curl -O 'http://cambelt.co/400x150/[0-4]_[0-4].png'

とすると、0_0.png → 4_4.pngまでいい感じに生成してくれます。

57
58
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
57
58

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?