Search found 2972 matches

by Bonzo
2007-08-16T10:54:17-07:00
Forum: Users
Topic: probably simple, but I don't understand!
Replies: 2
Views: 6124

Re: probably simple, but I don't understand!

I have no experiance of this Paul but would it be something like -page http://www.imagemagick.org/script/comma ... s.php#page or -repage http://www.imagemagick.org/script/comma ... php#repage ?
by Bonzo
2007-08-16T10:48:37-07:00
Forum: Users
Topic: coppermine and imagemagick?
Replies: 1
Views: 5005

Re: coppermine and imagemagick?

I would look at the Coppermine forum for installation suggestions as I presume there will be a lot more information about it there. You have a webserver but your path to ImageMagick is in "C:/Documents and Settings/Owner/Desktop/ImageMagick/" that sounds a bit odd. You are running your web...
by Bonzo
2007-08-13T09:10:26-07:00
Forum: Users
Topic: Gradient instead of solid fill color
Replies: 6
Views: 19660

Re: Gradient instead of solid fill color

I would create a gradiant and rotate it; then use that for the background. Something like this http://www.rubblewebs.co.uk/imagemagick ... adiant.png
One problem I can see is the angle of rotation will depend on the width of the button.
by Bonzo
2007-08-10T08:33:13-07:00
Forum: Users
Topic: .fon font files don't seem to work.
Replies: 2
Views: 7220

Re: .fon font files don't seem to work.

I do not think .fon are supported; I always use .ttf fonts. -font name use this font when annotating the image with text. Use the -list option with a 'Type' argument for a list of -font that IM knows about by name. Or you can specify a font file for direct use. You can tag a font to specify whether ...
by Bonzo
2007-08-09T11:56:36-07:00
Forum: Users
Topic: newbie: can text be rendered ontop an image on the disk?
Replies: 3
Views: 7572

Re: newbie: can text be rendered ontop an image on the disk?

In your first post you mentioned using a gradiant as the text. At the second step use a gradiant image as opposed to my sunflower image and that will do what you want. http://www.rubblewebs.co.uk/imagemagick/text.php?info=composte.jpg <?php // Create the text to use as a mask exec("convert -siz...
by Bonzo
2007-08-09T07:45:03-07:00
Forum: Users
Topic: newbie: can text be rendered ontop an image on the disk?
Replies: 3
Views: 7572

Re: newbie: can text be rendered ontop an image on the disk?

I tend to use php and I have some examples on my site that you are looking for see my signature.

To use the code on windows or Linux you can change

Code: Select all

exec("convert -size 100x50 gradient:orange-yellow gradiant1.png");
To

Code: Select all

convert -size 100x50 gradient:orange-yellow gradiant1.png
by Bonzo
2007-08-07T09:26:15-07:00
Forum: Users
Topic: Extract similar parts of an image
Replies: 4
Views: 9505

Re: Extract similar parts of an image

You could try modifying this code to get the colours: // create a new image with everything transparent apart from the selected colour. This image must be saved as a png due to the transparency. exec("/usr/local/bin/convert 2_1124623409.jpg -matte \( +clone -fuzz 33% -transparent rgb\(38,134,71...
by Bonzo
2007-08-05T11:25:10-07:00
Forum: Users
Topic: composite not working same way in 6.33
Replies: 3
Views: 7699

Re: composite not working same way in 6.33

An answer: I do not have 6.33 so I do not know. Looking at your code I am supprised it worked in the first place. -resize is not a recognised composite comand, I usualy put the resize comand next to the item I am going to resize or in ( ). The negative sign in the -geometry -3-7 would move one of th...
by Bonzo
2007-08-03T14:32:34-07:00
Forum: Users
Topic: Text on a Curved Path
Replies: 6
Views: 16632

Re: Text on a Curved Path

Reread post and I gave an incorrect answer.

WHY can't we delete posts ?
by Bonzo
2007-08-03T14:23:00-07:00
Forum: Users
Topic: I cannot visualize my .ps/.eps graphics
Replies: 0
Views: 3233

Re: I cannot visualize my .ps/.eps graphics

An example of your code would help. But your image will not be shown on your page when the code is run but saved ( unless you have specificaly asked for it to be shown ). Are you sure the image was not created and saved somewhere ? I use php and if there was an error in your code nothing is displaye...
by Bonzo
2007-08-02T13:36:41-07:00
Forum: Users
Topic: Text with font in special folder
Replies: 2
Views: 6981

Re: Text with font in special folder

Code: Select all

-font /home/me/fonts/special.ttf
Although I would use the relative path from the script.
by Bonzo
2007-08-01T12:53:01-07:00
Forum: Users
Topic: How to check for when EXIF = TIF but file extension = JPG
Replies: 0
Views: 3321

Re: How to check for when EXIF = TIF but file extension = JPG

If you are using php you could try modifying the code below. <?php $sourcefile = 'flowers.jpg'; $answer_exif = system("exec identify -format \"%[EXIF:Make]\" $sourcefile"); $answer_exif = explode( " ", $answer_exif ); print "Camera make = ".$answer_exif[1]; ?>
by Bonzo
2007-08-01T12:39:11-07:00
Forum: Users
Topic: Problem with shadow command
Replies: 1
Views: 4688

Re: Problem with shadow command

The code below worked for me:

Code: Select all

<?php 
exec("convert boots_layer_2.png -background black -shadow 80x3+5+5 final.png "); 
exec("convert final.png boots_layer_2.png -composite shadow_test.png"); 
?> 
Image
by Bonzo
2007-08-01T12:31:33-07:00
Forum: Users
Topic: Install on Fedora Core 6 : dependencies problem
Replies: 3
Views: 9631

Re: Install on Fedora Core 6 : dependencies problem

I know nothing about Linux but I have installed it on a Linux machine with Fedora 6 ( may have been 7 ? ) and this is all I did : Download and run the latest binary release for linux from here. http://www.imagemagick.org/script/binary-releases.php#unix Extract the rpm file to a folder on your PC. Ru...
by Bonzo
2007-08-01T12:24:29-07:00
Forum: Users
Topic: The return of masking image
Replies: 3
Views: 9960

Re: The return of masking image

Its strange but as I try to save your images the only option I get is bmp not jpg or gif as the file extension in the link. This is done using php but you should be able to modify it to what you want: <?php exec("convert -size 100x100 xc:none -fill black -draw \"circle 50,50 50,1\" ma...