Search found 32 matches

by robocop
2015-12-05T18:09:11-07:00
Forum: Users
Topic: Optimizing Imagemagick convert & composite code
Replies: 14
Views: 32887

Re: Optimizing Imagemagick convert & composite code

fmw42 wrote: Please always provide your IM version and platform, since syntax differs. See also viewtopic.php?f=1&t=9620
Sorry i totally forgot about noting it.

Version: ImageMagick 6.7.7-10 2014-03-06 Q16 on Linux Ubuntu

I check those links out. Cheers
by robocop
2015-12-05T04:31:35-07:00
Forum: Users
Topic: Optimizing Imagemagick convert & composite code
Replies: 14
Views: 32887

Optimizing Imagemagick convert & composite code

Hi Magick Folks :D I was wondering if it's possible to optimize the following convert and composite code ? I've added 3 sample lines below of what i have. I have a huge file of words to convert and composite to a custom background canvas. Everything is the same except the Labels. ( I copied this cod...
by robocop
2015-09-11T05:15:27-07:00
Forum: Users
Topic: How to push text label down
Replies: 8
Views: 8606

Re: How to push text label down

Another solution is just to use -roll, if you have enough padding. convert -background white -fill '#FF6961' -stroke '#FF6961' -font '/Library/Fonts/Times New Roman.ttf' -size 500x500 -pointsize 300 label:W -roll +0+50 show: see http://www.imagemagick.org/script/command-line-options.php#roll Yes th...
by robocop
2015-09-06T06:28:50-07:00
Forum: Users
Topic: How to push text label down
Replies: 8
Views: 8606

Re: How to push text label down

You can use -geometry +0+0 on its own to set the distance from the top left corner or use it with -gravity to adjust it from there. Although it may not work with label: depending the effect yoU are after can you use -annotate ? I did try both of them with not much luck, however the -extent operatio...
by robocop
2015-09-06T06:26:46-07:00
Forum: Users
Topic: How to push text label down
Replies: 8
Views: 8606

Re: How to push text label down

You can use -geometry +0+0 on its own to set the distance from the top left corner or use it with -gravity to adjust it from there. Although it may not work with label: depending the effect yoU are after can you use -annotate ? -extent seems to work for label; you have to use negative y value to mo...
by robocop
2015-09-05T00:01:24-07:00
Forum: Users
Topic: How to push text label down
Replies: 8
Views: 8606

How to push text label down

Hi Folks, Hope someone could help me please :) With the following command: convert -background white -fill '#FF6961' -stroke '#FF6961' -font times.ttf \ -size 500x500 -pointsize 300 -gravity center \ label:W sample.jpg I get the following image which appears center: http://www.fijinetworks.com/sampl...
by robocop
2014-04-09T18:28:44-07:00
Forum: Users
Topic: Fixed width image with label help
Replies: 2
Views: 4706

Re: Fixed width image with label help

You have to create the test to the size of the background image and overlay it. But if you want padding on the sides as in the last example, then you must specify the size reduced by the padding. You do not mention your IM version or platform, which you should always do, since syntax differs betwee...
by robocop
2014-04-09T04:40:19-07:00
Forum: Users
Topic: Fixed width image with label help
Replies: 2
Views: 4706

Fixed width image with label help

Hi :) I'm having a small issue and hope someone can please help. I've checked http://www.imagemagick.org/Usage/text/ and haven't had much luck. I'm using this command below to generate an image label. convert -size 300x187 -gravity center label:"Quick Test" test.png which generates: http:/...
by robocop
2013-10-17T16:09:29-07:00
Forum: Users
Topic: Batch Label / Annotating Images
Replies: 3
Views: 4010

Re: Batch Label / Annotating Images

Thanks fmw42 for your advise.

I'll go ahead and make the the label as a transparent background image and use the mogrify command.

Cheers
by robocop
2013-10-17T15:37:02-07:00
Forum: Users
Topic: Batch Label / Annotating Images
Replies: 3
Views: 4010

Batch Label / Annotating Images

I have a directory and several sub-directories below the main directory with thousands of images. I would like to apply a simple text label to all the images at once. The Annotating Images / Labeling an Image command works perfectly as I have tested it on a few of my images: http://www.imagemagick.o...
by robocop
2013-10-17T15:30:22-07:00
Forum: Users
Topic: Create a Stencil Outline
Replies: 7
Views: 7404

Re: Create a Stencil Outline

Sorry for the super late reply.

Thanks very much! The last one worked pretty well.

I appreciate the help
Thank you
by robocop
2013-07-24T19:56:15-07:00
Forum: Users
Topic: Create a Stencil Outline
Replies: 7
Views: 7404

Re: Create a Stencil Outline

Thanks Bonzo.

I tried what you suggested but as you mentioned, it didn't come out very well :) Cheers
by robocop
2013-07-24T19:47:57-07:00
Forum: Users
Topic: Create a Stencil Outline
Replies: 7
Views: 7404

Re: Create a Stencil Outline

Hi! Thank you for sharing your thoughts. The original image: http://img43.imageshack.us/img43/5357/qlq.png After i apply the command: convert image.png -edge .5 -blur 0x.5 image_new.png I get this image: http://img443.imageshack.us/img443/1766/enit.png and after i apply the second command: convert i...
by robocop
2013-07-24T02:34:36-07:00
Forum: Users
Topic: Create a Stencil Outline
Replies: 7
Views: 7404

Create a Stencil Outline

Hello I was looking for a way to convert my silhouette images into a stencil outline. Is there a way to do this correctly? I have tried taking my silhouette image and applied the following 2 commands: convert image.png -edge .5 -blur 0x.5 image_new.png convert image_new.png -negate image_final.png A...
by robocop
2013-03-30T22:46:52-07:00
Forum: Users
Topic: How do I use ImageMagick to create vertical text with Asian
Replies: 4
Views: 5776

Re: How do I use ImageMagick to create vertical text with As

Here is a little bit of php code I wrote: <?php // With this code you can automaticaly add the \n to every character in the string. // The last character will not have a \n // You could use a form to set the $string value $string="TEXT"; for ($pos = 0; $pos < strlen($string); $pos++) if (...