Search found 19 matches

by aLabelMaker
2011-02-22T17:09:16-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

fmw42 wrote:what about your IM version, Qlevel and platform
Version: ImageMagick 6.6.6-3 2011-01-04 Q16

Not sure what you mean by platform. Are you talking about the processor?
Still learning computer language.
by aLabelMaker
2011-02-18T08:43:26-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

You can check your version by: convert -version I am using version 6.6.6-3 also you can check what delegates you have installed by convert -list configure and look at the line starting with DELEGATES DELEGATES bzlib fftw fontconfig freetype gs gvc jbig jpeg jng jp2 lcms lqr mpeg openexr png rsvg ...
by aLabelMaker
2011-02-17T17:02:51-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

convert banana.jpg \( banana_mask.gif -negate \) -alpha off -compose copy_opacity -composite \> -compose over -background none banana_leftp.png This command does not make sense to me. Especially the \>. Note that the \ at the end of the lines is unix and means command is continued to the next line ...
by aLabelMaker
2011-02-17T09:27:09-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

run these 3 commands: convert -size 2800x1949 xc:black -fill white \ -draw "polygon 1532,0 1532,756 1440,824 1440,1949 2800,1949 2800,0" \ -alpha off banana_mask.gif convert banana.jpg banana_mask.gif -alpha off -compose copy_opacity -composite \ -compose over -background white -flatten banana ...
by aLabelMaker
2011-02-17T08:11:34-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

run these 3 commands: convert -size 2800x1949 xc:black -fill white \ -draw "polygon 1532,0 1532,756 1440,824 1440,1949 2800,1949 2800,0" \ -alpha off banana_mask.gif convert banana.jpg banana_mask.gif -alpha off -compose copy_opacity -composite \ -compose over -background white -flatten banana ...
by aLabelMaker
2011-02-16T15:54:17-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Re: Need to split image to make 2 separate images from one

i would simply like to have each tree in a separate image to later be manipulated. The bottom black (ground) portion is not too important on how it is split. I just need to be able to work with each tree separately.

Thanks
by aLabelMaker
2011-02-16T09:59:47-07:00
Forum: Users
Topic: How do I make all the WHITE in an image transparent?
Replies: 1
Views: 3192

How do I make all the WHITE in an image transparent?

I have a black and white graphic of some trees. The trees are black and the background is white. I need to make the background transparent.

Any suggestions?
by aLabelMaker
2011-02-16T08:11:06-07:00
Forum: Users
Topic: Need to split image to make 2 separate images from one
Replies: 15
Views: 23988

Need to split image to make 2 separate images from one

What's the best way to do this? the split would need to be done from a diagnol line, not vert or horiz based on how the image( two trees) is set up.

Thanks, Ya'll are awesome on here...so helpful.
by aLabelMaker
2011-02-16T07:41:19-07:00
Forum: Users
Topic: How do you round the corners on an image
Replies: 4
Views: 7157

Re: How do you round the corners on an image

...actually I ran into a road bump... I would like the border to be 2 pixels instead of 3. When I replace all the "3's" to "2's" I did not give me the proper output. The border was not the same width all the way around. Any Ideas why this happened. (I'm pretty positive that I did not miss any "3's").
by aLabelMaker
2011-02-15T18:08:07-07:00
Forum: Users
Topic: How do you round the corners on an image
Replies: 4
Views: 7157

Re: How do you round the corners on an image

Thanks, got it! On to the next step...
by aLabelMaker
2011-02-15T11:10:44-07:00
Forum: Users
Topic: How do you round the corners on an image
Replies: 4
Views: 7157

How do you round the corners on an image

I have an image that is a rectangle and I would like to make the corners rounded.
What is the best command to do this?
Thanks so much!
by aLabelMaker
2011-01-13T10:15:23-07:00
Forum: Users
Topic: trouble with output after resizing image.
Replies: 1
Views: 3154

trouble with output after resizing image.

I am needing to resize an image and place in the center of my current box. I first resize image and then put it in the current box using this command convert cv001.png Sunfire11.png -gravity center -compose over -composite cv029.png When I open this new file in illustrator, the outline of the image ...
by aLabelMaker
2011-01-12T10:49:00-07:00
Forum: Users
Topic: Insert Image inside box i created.
Replies: 1
Views: 3667

Insert Image inside box i created.

Here is the box that I created. convert -density 72 -size 576x252 xc:white -stroke black -linewidth 1 -fill white -draw "rectangle 3,3 573,249" -draw "line 193,249 193,3" -draw "line 383,249 383,3" cv05.png I am looking to insert an image in the middle box and have not found the right command for ...
by aLabelMaker
2011-01-11T19:05:01-07:00
Forum: Users
Topic: How do I create an 8" x 3.5" box?
Replies: 8
Views: 12573

Re: How do I create an 8" x 3.5" box?

I am using the bash shell.