Search found 10 matches

by pommeverte
2013-04-11T06:00:02-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

Anyone? :(
by pommeverte
2013-04-08T07:01:42-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

actually,

Code: Select all

convert in.tif -alpha opaque out.png
Seemes to do it. but I'm not sure if I understand why. Would you be able to tell me why this is?
by pommeverte
2013-04-08T05:20:29-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

Hi again guys. You ended up putting me on the right track, convert in.tif -alpha transparent -clip -alpha opaque out.png gives me the expected output. can anyone explain what this does? And more importantly, I batch process plenty of images from various origines and filetypes. If I add this to the ...
by pommeverte
2013-04-08T04:49:42-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

Thanks for taking the time to help me guys.

I've tried both with profiles/colorspaces and with +clip (I couldn't figure out how to get +clip-path to work) and nothing worked.
by pommeverte
2013-04-07T01:31:52-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

sure thing : Image: in.tif Format: TIFF (Tagged Image File Format) Class: DirectClass Geometry: 6732x8984+0+0 Resolution: 299x299 Print size: 22.5151x30.0468 Units: PixelsPerInch Type: ColorSeparationAlpha Base type: ColorSeparation Endianess: MSB Colorspace: CMYK Depth: 8-bit Channel depth: cyan: 8 ...
by pommeverte
2013-04-06T12:50:58-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Re: Error converting tiff

I'm using Ubuntu 12.04 LTS convert -list configure : Name Value ------------------------------------------------------------------------------- CC gcc -std=gnu99 -std=gnu99 CFLAGS -fopenmp -g -O2 -Wall -pthread -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 CODER_PATH /usr/local/lib ...
by pommeverte
2013-04-05T04:41:06-07:00
Forum: Bugs
Topic: Error converting tiff
Replies: 11
Views: 8638

Error converting tiff

Hello, I've currently got a TIFF image. When I convert using convert image.tiff image.jpg I get the correct image. When I convert using convert image.tiff image.png I get an image with only part of the data. It looks like there were multiple layers but converting to png only takes one layer. The ...
by pommeverte
2013-03-20T18:15:33-07:00
Forum: Users
Topic: text watermark change sizes depending on image it's on
Replies: 7
Views: 7254

Re: text watermark change sizes depending on image it's on

Is there any way I could pipe the resized image and get it's resized height/width on the fly? If not I guess I'll have to compute height/width, I was kind of using area size to avoid it but hey.
by pommeverte
2013-03-20T04:01:09-07:00
Forum: Users
Topic: text watermark change sizes depending on image it's on
Replies: 7
Views: 7254

Re: text watermark change sizes depending on image it's on

But I am resizing the background image using an area size, so how do I know what size to give my label? I'd also rather not make a label the size of the original file if I could help it as it would be a waste of ressources. Given the amount of conversions our server has to make this is important for ...
by pommeverte
2013-03-19T11:19:16-07:00
Forum: Users
Topic: text watermark change sizes depending on image it's on
Replies: 7
Views: 7254

text watermark change sizes depending on image it's on

Hi guys, I'm hitting a bit of a wall. I need to add a text watermark to images, however I don't know the size of these images so I end up with tet that isn't the appropriate size (tiny) on some images. The command I use is: convert 'in.tif'[0] -profile 'AdobeRGB1998.icc' -resize 6150400 ...