#author("2021-02-23T04:38:53+00:00","default:admin","admin") #author("2021-02-23T14:03:42+00:00","default:admin","admin") *ImageMagick [#a081b443] -[[Anatomy of the Command-line:http://www.imagemagick.org/script/command-line-processing.php]] -[[ImageMagickによる基本的な画像処理:http://psa2.kuciv.kyoto-u.ac.jp/staff/susaki/image/magick_process.html]] -[[「さようなら ImageMagick」の考察:https://qiita.com/yoya/items/2076c1f5137d4041e3aa]] **インストール [#f00a6065] -[[imagickを使うためにImageMagickの最新版をインストールする話:http://www.imagemagick.org/script/command-line-processing.php]] ***種々の画像形式に対応するために、先に画像フォーマットのライブラリをインストール [#lfb38e7b] -[["no decode delegate for this image format" の対処法:http://dqn.sakusakutto.jp/2013/10/no_decode_delegate_for_this_image_format.html]] -JPEG $ sudo apt install libjpeg-dev -PNG $ sudo apt install libpng-dev -TIFF $ sudo apt install libtiff-dev ***ImageMagick本体はソースからインストール [#tcdd5f99] $ git clone https://github.com/ImageMagick/ImageMagick.git $ cd ImageMagick $ ./configure --with-modules $ make $ sudo make install $ sudo ldconfig /usr/local/lib **convert [#u92b3826] -[[コマンド convert 画像ファイルを変換する (ImageMagick) :http://x68000.q-e-d.net/~68user/unix/pickup?convert]] ***標準入出力 [#e4a35ad5] -[[convert Tips – 標準入出力の利用と画像形式を指定の方法:https://www.ecoop.net/memo/archives/2007-07-05-1.html]] *[[Cairo:https://cairographics.org/]] [#p6a240b0] -[[cairo を使ったクロスプラットフォーム・グラフィックス:https://www.ibm.com/developerworks/jp/linux/library/l-cairo/index.html]] -[[armadillo-440の画像表示:https://users.atmark-techno.com/node/2669]] **2値化 [#ue73721e] -[[Imagemagickで2値化してみた:https://qiita.com/RyOza/items/d9de311b3ac2b02da2f7]]