Search found 11 matches

by LinuxPope
2012-06-27T22:26:19-07:00
Forum: Users
Topic: Convert delete layer from TIFF, save as JPEG
Replies: 15
Views: 33786

Re: Convert delete layer from TIFF, save as JPEG

I will ask for a sample file.
by LinuxPope
2012-06-27T13:36:26-07:00
Forum: Users
Topic: Convert delete layer from TIFF, save as JPEG
Replies: 15
Views: 33786

Re: Convert delete layer from TIFF, save as JPEG

I confirmed with the designer, the file has layers (which also explains why it is 35MB!) I only see some errors: homepage.tif TIFF 1895x1078 1895x1078+0+0 8-bit DirectClass 35.39MB 0.140u 0:00.139 identify: homepage.tif: wrong data type 7 for "RichTIFFIPTC"; tag ignored. `TIFFReadDirectory...
by LinuxPope
2012-06-27T11:43:35-07:00
Forum: Users
Topic: Convert delete layer from TIFF, save as JPEG
Replies: 15
Views: 33786

Re: Convert delete layer from TIFF, save as JPEG

Sure, here you go. I hope my old-ish version of imagemagick isn't a problem, if it is then let me know and I'll run the same command on a newer version. Image: homepage.tif Format: TIFF (Tagged Image File Format) Class: DirectClass Geometry: 1895x1078+0+0 Resolution: 72x72 Print size: 26.3194x14.972...
by LinuxPope
2012-06-27T10:19:21-07:00
Forum: Users
Topic: Convert delete layer from TIFF, save as JPEG
Replies: 15
Views: 33786

Re: Convert delete layer from TIFF, save as JPEG

no I'm sorry, it is work related. These are tiff images given to us from various web designers, so they are copyrighted. I asked and they told me that they work on PSD files but save them as multi-layered tiff files when they need to send them to web developers. Since I don't use windows, I can't re...
by LinuxPope
2012-06-27T02:00:12-07:00
Forum: Users
Topic: Convert delete layer from TIFF, save as JPEG
Replies: 15
Views: 33786

Re: Convert delete layer from TIFF, save as JPEG

Sorry to open this old thread again, but the bug still exists, I can't extract layers from TIFF files generated by Photoshop CS. Same problem as the original poster. Looking at older threads, it appears like this was working in 2008 for many people by simply doing: convert mulitple.tif layer%d.tif A...
by LinuxPope
2012-01-23T00:47:48-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

Re: convert thumbnail with offset

I'm sorry to report but none of the suggestions worked. I had to resort to the "long" way of doing this: -resize xY -resize Xx< -resize 50% -crop XxY+OffsetX+OffsetY not very elegant, and the "^" character was supposed to be a shortcut but since ^ doesn't work with offsets... I h...
by LinuxPope
2012-01-22T04:50:40-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

Re: convert thumbnail with offset

Here is a test case: convert im logo to a 100x100 thumbnail without any offset: convert logo: -thumbnail 100x100^ -gravity center -extent 100x100 test.png do the same with +50px vertical offset: convert logo: -thumbnail 100x100^+0+50 -gravity center -extent 100x100 test.png Based on the documentatio...
by LinuxPope
2012-01-22T04:27:36-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

Re: convert thumbnail with offset

I tried version 6.7.0, then I tried 6.7.4... I tried to move the ^ character and made sure it is properly escaped.... no go, they all have the same problem.

Probably a bug that has been around for a long time but nobody noticed because it is not so frequent to displace/offset a thumbnail.
by LinuxPope
2012-01-22T02:56:47-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

Re: convert thumbnail with offset

unfortunately, that didn't work.

does it work for others? maybe my version (6.5.8-10) is a bit too old?
by LinuxPope
2012-01-21T23:16:24-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

Re: convert thumbnail with offset

*bump*

nobody?
by LinuxPope
2012-01-14T07:41:49-07:00
Forum: Bugs
Topic: convert thumbnail with offset
Replies: 9
Views: 18752

convert thumbnail with offset

I've developed a thumbnail editor for my application, which allows the user to "move" his large avatar within a set dimensions and thus save a thumbnail that looks better than the auto-generated one. I do this by using the old method of "-resize Y -resize Xx< -resize 50% -gravity cent...