문제

I would like to convert a Khoros Visualization Image – .XV or .VIFF extension – to bitmap. I've tried

convert tree.xv tree.bmp

but it returns a black image, while the original is similar to the following:

convertion by ImageMagick How it should be

I've looked into this ImageMagick description and it apparently supports this format:

The ImageMagick utilities recognize the following image formats:

Name Mode Description

VIFF *rw+ Khoros Visualization image

Is it possible to convert a .XV image to .BMP or .PNG using ImageMagick?

If someone would like to test, download an example of the figure here.

도움이 되었습니까?

해결책

I was solving the same problem (probably on the same Brodatz dataset :-)). My solution was just using GraphicsMagick.

While ImageMagick returned a black image (same problem as yours), the GraphicsMagick package worked good for me. The usage is very similiar, you just add gm at the beginning:

gm convert tree.xv tree.bmp 

다른 팁

The bug in ImageMagick will be fixed in version 6.8.7-0.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top