[Back]

ImageMagickパッケージ

ImageMagickJohn Cristy 氏によって開発されている画像変換パッケージです。その中のツール displayはXVに似たイメージビュアーです。また、ツール convertは簡単に画像フォーマットの変換を行なうことができます。 ImageMagick は後で説明する XV とは違って、フリーソフトウェアです。 ImageMagick は現在でも頻繁にバージョンアップがなされており、XV を使用 するよりも ImageMagick を使うことをおすすめします。

% convert foo.iris foo.gif
とすれば、シリコングラヒックス社のIRISフォーマットからGIFに変換されま す。また、ファイルタイプと、標準出力 "-" を使って、
% convert foo.iris gif:- | display -
とすると、GIFに変換され、displayプログラムで表示させることが できます。


ImageMagick の displayプログラム

ImageMagick パッケージはは以下のプログラムから構成されています。

display
Xウィンドウへの表示に加え、切り取り、サイズ変換、回転等の様々な 加工も行います。
import
Xウィンドウ画面をファイルに落します。
animate
複数の静止画像ファイルをアニメーションのように表示させます。
montage
スライドシートを作成します。
convert
画像ファイルのフォーマット変換を行います。
mogrify
identify
画像の情報を表示します。
combine
複数の画像を一つの画像にします。
segment
xtp
URLを指定して、リモートの画像を取得します。
なお、ImageMagick は頻繁にソフトウェアのバージョンアップが行われており、 最新の画像フォーマットも扱うことができます。下表にImageMagick がサポー トしている画像フォーマットは示します。

ImageMagick がサポートしている画像フォーマット一 覧
タグ 説明
AVS AVS X image file
BMP Microsoft Windows bitmap image file
CMYK Raw cyan, magenta, yellow, and black bytes
EPS Adobe Encapsulated PostScript file
EPSF Adobe Encapsulated PostScript file
EPSI Adobe Encapsulated PostScript Interchange format
FAX Group 3
FITS Flexible Image Transport System
GIF Compuserve Graphics image file
GIF87 Compuserve Graphics image file (version 87a)
GRAY Raw gray bytes
HDF Hierarchical Data Format
HISTOGRAM Histogram of the image
HTML Hypertext Markup Language
JBIG Joint Bi-level Image experts Group file interchange format
JPEG Joint Photographic Experts Group file interchange format
MAP colormap intensities and indices
MATTE Raw matte bytes
MIFF Magick image file format
MPEG Motion Picture Experts Group file interchange format
MTV MTV Raytracing image format
NULL NULL image
PCD Photo CD
PCX ZSoft IBM PC Paintbrush file
PDF Portable Document Format
PICT Apple Macintosh QuickDraw/PICT file
PNG Portable Network Graphics
PNM Portable bitmap
PS Adobe PostScript file
PS2 Adobe Level II PostScript file
RAD Radiance image file
RGB Raw red, green, and blue bytes
RGBA Raw red, green, blue, and matte bytes
RLE Utah Run length encoded image file; read only
SGI Irix RGB image file
SUN SUN Rasterfile
TEXT raw text file; read only
TGA Truevision Targa image file
TIFF Tagged Image File Format
TILE tile image with a texture
UYVY 16bit/pixel interleaved YUV (e.g. used by AccomWSD)
VICAR read only
VID Visual Image Directory
VIFF Khoros Visualization image file
X select image from X server screen
XC constant image of X server color
XBM X11 bitmap file
XPM X11 pixmap file
XWD X Window System window dump image file
YUV CCIR 601 1:1:1 file
YUV3 CCIR 601 2:1:1 files



[Back]