Hi everyone,
Iam new to image magick can anyone please help me in this ....
I want to read images of format .svs exetension. the image have dimensions of 60000x30000 and its size is nearly 100MB. can we read images like this using image-magick.
Thanks in advance.
Read .svs format of Images
-
- Posts: 43
- Joined: 2011-10-01T14:34:04-07:00
- Authentication code: 8675308
Re: Read .svs format of Images
Try the following command:
- convert 'CMU-1.svs[3]' CMU-1.png
Re: Read .svs format of Images
SVS is really just a pyramidal (multipage) TIFF file. You can see the pages and their dimensions using the identify command. ImageMagick can read most of them, but we've found the newer ones use JPEG2000 compression and cannot be read with libtiff.
If you want to work with the largest image in an SVS file of that size (60000x30000), vips might would work better since it doesn't read the whole thing into memory.
If you want to work with the largest image in an SVS file of that size (60000x30000), vips might would work better since it doesn't read the whole thing into memory.
-
- Posts: 43
- Joined: 2011-10-01T14:34:04-07:00
- Authentication code: 8675308
Re: Read .svs format of Images
what is vips...?Can u please explain..?wildbug wrote:SVS is really just a pyramidal (multipage) TIFF file. You can see the pages and their dimensions using the identify command. ImageMagick can read most of them, but we've found the newer ones use JPEG2000 compression and cannot be read with libtiff.
If you want to work with the largest image in an SVS file of that size (60000x30000), vips might would work better since it doesn't read the whole thing into memory.
Re: Read .svs format of Images
VIPS is one of many open-source image processing solutions. Its an alternative to ImageMagick like NetPBM, Gimp, etc.
-
- Posts: 43
- Joined: 2011-10-01T14:34:04-07:00
- Authentication code: 8675308
Re: Read .svs format of Images
thank you much for your support @fmw42