imageMagickで画素補間

man convertを見ると

         -interpolate method  pixel color interpolation method

とあるのに,info convertとかでも詳しい説明がなかったので,
manページのOVERVIEWセクションにある
http://www.imagemagick.org/script/convert.php
を見てみた.
# file:///usr/share/doc/ImageMagick-6.4.0/www/convert.htmlにも
# ヘルプがあるようですが,ImageMagick-6.4.0以下のディレクトリがありませんでした.


このページの15%くらいのところにコマンドラインオプションの詳細が載っていて,

integer: The color of the top-left pixel (floor function)
nearest-neighbor: The nearest pixel to the lookup point (rounded function)
average: The average color of the surrounding four pixels
bilinear A double linear interpolation of pixels (the default)
mesh Divide area into two flat triangular interpolations
bicubic Fitted bicubic-spines of surrounding 16 pixels
spline Direct spline curves (colors are blurred)
filter Use resize -filter settings

http://www.imagemagick.org/script/../script/command-line-options.php#interpolate

とありました.

$ convert -interpolate integer vector.svg vector.eps

などとすることで変換することができました.