Search found 13 matches
- 2016-08-27T05:12:09-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
You have found a feature that was added last year. The first image has a resource block that contains layer information. Extracting one of the layers is possible as you have seen. But you cannot 'only' get the first image because the second image (layer) is part of the first image. You can disable ...
- 2016-08-27T04:53:37-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
For anyone else who encounters this issue, you can use libtiff directly to isolate the first extent:
Code: Select all
tiffcp image.tiff,0 out.tiff
- 2016-08-26T21:25:13-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
Here's another example image: https://assets.weaveup.com/print_rasters/c6f95170d8a5aebb1ee7e32bf52325b7.tif locriani@Schreckhorn:~ $ identify c6f95170d8a5aebb1ee7e32bf52325b7.tif c6f95170d8a5aebb1ee7e32bf52325b7.tif[0] TIFF 1013x325 1013x325+0+0 8-bit CIELab 232KB 0.000u 0:00.000 ...
- 2016-08-26T21:05:46-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
The subfile is there, I assure you. As per the TIFF spec: There may be more than one IFD in a TIFF file. Each IFD defines a subfile. One potential use of subfiles is to describe related images, such as the pages of a facsimile transmission. A Baseline TIFF reader is not required to read any IFDs ...
- 2016-08-26T12:49:49-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
It appears the difference is that the images I have with the issue have the following subfile tag:
While the generated image above that works has the following subfile tag:
Code: Select all
Subfile Type: (0 = 0x0)
Code: Select all
Subfile Type: multi-page document (2 = 0x2)
- 2016-08-26T12:45:35-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
Here's an image with the issue:
https://assets.weaveup.com/uploads/uplo ... 11a224.tif
It appears to affect all the images we have had uploaded (generally created in Photoshop or NedGraphics), but not the example generated by imagemagick you just posted.
https://assets.weaveup.com/uploads/uplo ... 11a224.tif
It appears to affect all the images we have had uploaded (generally created in Photoshop or NedGraphics), but not the example generated by imagemagick you just posted.
- 2016-08-26T12:39:10-07:00
- Forum: Bugs
- Topic: Random pixel drop outs on image pipeline
- Replies: 5
- Views: 3894
Re: Random pixel drop outs on image pipeline
Confirmed that this is an issue with OpenMP support.
- 2016-08-26T12:36:29-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
It is impossible to extract both images from the tiff into separate images. You can extract [0, 1] into one image, and [1] into another image, but not [0]. Have you tried using "[0]"? convert 5c7cf6f8-7d4d-47a8-b2f4-fff17911a224.tif[0] -scene 0 a%d.tif ("-scene 0" is irrelevant, as that is the ...
- 2016-08-26T12:33:01-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Re: Multipage Tiff Extraction Functions Incorrectly
What do you think doesn't work correctly? convert 5c7cf6f8-7d4d-47a8-b2f4-fff17911a224.tif -scene 0 a%d.tif When the input tiff contains two images, this should create one output tiff file that contains those two images. The output file will be named "a0.tif". It is impossible to extract both ...
- 2016-08-26T12:32:12-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
- 2016-08-26T12:02:09-07:00
- Forum: Bugs
- Topic: Multipage Tiff Extraction Functions Incorrectly
- Replies: 18
- Views: 10347
Multipage Tiff Extraction Functions Incorrectly
Hello! With either the latest ImageMagick 6.9.5 or ImageMagick 7.0.2, tiff multipage extraction does not function correctly: vagrant@vagrant-ubuntu-trusty-64:~$ convert --version Version: ImageMagick 7.0.2-9 Q16 x86_64 2016-08-26 http://www.imagemagick.org Copyright: Copyright (C) 1999-2016 ...
- 2016-08-20T02:26:59-07:00
- Forum: Bugs
- Topic: Random pixel drop outs on image pipeline
- Replies: 5
- Views: 3894
Re: Random pixel drop outs on image pipeline
Yeah, the lab conversions are part of the pipeline because it forks in several places and we need CIELab output for the majority of the images (just not the pngs). I was actually able to resolve this issue a few minutes ago by grabbing the bytes directly from imagemagick instead of having ...
- 2016-08-20T01:12:34-07:00
- Forum: Bugs
- Topic: Random pixel drop outs on image pipeline
- Replies: 5
- Views: 3894
Random pixel drop outs on image pipeline
Hello! I've been encountering a very persistent issue with the ImageMagick 6.9.* series (I have attempted to resolve this by trying every version in this series). This is using RMagick, but I am able to duplicate the issue consistently by reproducing the processing pipeline using the command line ...