Search found 8 matches

by buntone
2012-06-15T10:24:53-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Re: Center Image on Canvas

What I mean does convert or anything print anything out ever unless it finds an error?
by buntone
2012-06-15T10:17:36-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Re: Center Image on Canvas

I don't really know, I just broke it up into two commands one doing the extent and the other putting the images on the result of the extent. More of a work around. Is there a way to get a verbose output?
by buntone
2012-06-15T10:07:16-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Re: Center Image on Canvas

I figured it out and sorry for the confusion.
by buntone
2012-06-15T05:24:22-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Re: Center Image on Canvas

I am now have trouble placing other images. Here is the command I am using: convert cover-image.jpg -density 300x300 -resize x1950 -background white -gravity north -extent 2269x2952 -page +0+2575 accentStripe.tiff -page +0+2430 miniStripe.tiff -page +25+2575 authorText.tiff -page +75+1966 bookTitle ...
by buntone
2012-06-14T13:40:30-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Re: Center Image on Canvas

Here are the images: http://imgur.com/a/R3GcJ

the cover-image.jpg is first resized to respect aspect ratio and give it a height of 1950 and also converted to CMYK.

Version: 6.5.7-8 Platform: Linux
by buntone
2012-06-14T13:05:30-07:00
Forum: Users
Topic: Center Image on Canvas
Replies: 13
Views: 21682

Center Image on Canvas

I have images that are variable widths but always the same height. I have a canvas that is smaller than the width of the image that is being placed on it. How would I format the command so that the image is centered at the top of the canvas.
by buntone
2011-07-29T11:06:18-07:00
Forum: Users
Topic: Crop Question
Replies: 4
Views: 7202

Re: Crop Question

The offset I need messes up everything because it then crops with that offset in mind. Using gravity causes the me to get the wrong part of the image. I want it to only crop if the image dimensions are only bigger than the crop area and ignore the offset otherwise. Is there a way to do this?
by buntone
2011-07-29T08:29:48-07:00
Forum: Users
Topic: Crop Question
Replies: 4
Views: 7202

Crop Question

How would I crop an image if it is bigger the the supplied dimensions and only crop the dimension that is bigger? Here is the command I have right now:

Code: Select all

convert input.tiff -crop 2269x1950+430+0 +repage -endian lsb -colorspace CMYK -compress LZW output.tff
Any help would be appreciated.