Search found 14 matches

by The Transporter
2011-02-12T02:18:12-07:00
Forum: Users
Topic: Making a simple transparent rectangle.
Replies: 3
Views: 7853

Making a simple transparent rectangle.

Hello, I'm trying to make a simple transparent square using: convert -size 200x200 xc:none -fill '#0008' square.png But if doesn't work. I've read on the forum that I need to use dstOut but I don't find any example. Can you provide a simple example who draws a square or a rectangle filled with a ...
by The Transporter
2011-01-06T05:52:48-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Hello all, I succeded to do what I wanted finally ;-) Here is the whole script explained, for beginners who want to do the same... I help them also ;-) #!/bin/sh -x IMAGE=$1 # The Caption CAPTION="Set Your Caption Here" # The Font Size POINTSIZE="24" # The path to a font. FONT="./fonts/BMW75.TTF ...
by The Transporter
2011-01-04T15:35:49-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Bonzo wrote:Out of interest have you seen this site: http://www.mariusaasheim.com/
breathless !!! Woaw ! I still need to learn how to make HDR !!!
by The Transporter
2011-01-04T15:10:09-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Yeah it works perfectly now :) I'm using imagemagick 6.6.6-3 from macports. This is the result: http://img26.imageshack.us/img26/6966/testck.jpg Now the script to do this: #!/bin/sh IMAGE=$1 CAPTION="BMW's By Night | Photos by Pol D. | through-my-eyes.be" FONT="./fonts/BMW75.TTF" BORDERWIDTH="6 ...
by The Transporter
2011-01-04T13:55:48-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

For example convert -size 200x100 gradient: gradient.png convert -size 200x100 -background none -gravity center \ label:"Testing" png32:gradient_text_cutter.png convert gradient.png gradient_text_cutter.png \ -alpha set -compose DstOut -composite png32:gradient_text_hole.png When I do those ...
by The Transporter
2011-01-03T16:39:33-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Hello, Thanks for the script, it helped me a bit. I'm trying to split the problem into different parts so I can understand the commands. I already splitted up the gradient bar creation using this command: convert -size 30x1024 gradient:none-black -rotate -90 +repage gradient.png Now, I'm using this ...
by The Transporter
2011-01-03T14:03:34-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Hello, Thanks for the reply. That's the question, I'm wondering how to make that rectangle on the top. I'm trying to split up operations like: Drawing rectangle with gradient and put it on the original image at south. Draw text on the top of that image Maybe I can use the previous command from ...
by The Transporter
2011-01-03T13:07:02-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Re: Personnal signature in photos... Impossible to do...

Hello,

Sorry to dig up old topics but I'm wondering if it is possible to make a gradient of that background.

Instead of having a rectangle in the bottom filled with the same color, would it be possible to make an horizontal gradient, from transparent to that color ?

Thanks !
by The Transporter
2009-08-13T02:11:32-07:00
Forum: Users
Topic: Problem merging 2 convert commands...
Replies: 5
Views: 9399

Re: Problem merging 2 convert commands...

If you are trying to save time on lots of images I would try and find the image dimensions out of ImageMagick. Its only microseconds but: ImageMagick identify Width = 4000 - Time = 0.144232034683 php getimagesize() Width = 4000 - Time = 0.00023889541626 I see you are resizing at the end - could you ...
by The Transporter
2009-08-13T00:15:54-07:00
Forum: Users
Topic: Problem merging 2 convert commands...
Replies: 5
Views: 9399

Re: Problem merging 2 convert commands...

mogrify Only if you can avoid generating and compositing an extra image. which is imposible the way you have it due to the composition blur. But you can DIY a convert loop to do a directory of images. http://www.imagemagick.org/Usage/basics/#mogrify_not Yes this is already what I'm doing... Here is ...
by The Transporter
2009-08-11T05:05:58-07:00
Forum: Users
Topic: Problem merging 2 convert commands...
Replies: 5
Views: 9399

Problem merging 2 convert commands...

Hello, I'm looking for a new signatures for my photos and I made a news script based on what I saw on those 'so helpful' forums and I would like to improve my script. Here is the code: convert $IMAGE \( +clone -blur 0x10 +level 20%,100% -fill black -colorize 30% \) \ \( +clone -gamma 0 -shave ...
by The Transporter
2007-01-17T00:52:25-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Just one word: THANKS

Anthony your da man !

Thanks alot and keep up the good work!
by The Transporter
2007-01-16T13:23:48-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Hello Anthony,

I browsed your website again and again but what you tell me to do only put a box under the text.

Me I want a rectangle on the bottom of the image, on the whole bottom side. Is it possible ?

thanks
by The Transporter
2007-01-15T14:01:33-07:00
Forum: Users
Topic: Personnal signature in photos... Impossible to do...
Replies: 20
Views: 36088

Personnal signature in photos... Impossible to do...

Hello all, I'm a Belgian user of Imagemagick and I'm looking for a smart way to watermark my photos. I read alot of tutorials, but no one could help me :( The image you see that has been done in Gimp, like that, you can see better what I'm hardly trying to do... http://img158.imageshack.us/img158 ...