Search found 2972 matches

by Bonzo
2007-07-02T12:43:09-07:00
Forum: Users
Topic: Embedded cut-outs
Replies: 4
Views: 10591

Re: Embedded cut-outs

This forum is for ImageMagick software nothing to do with Photoshop etc.

Check Anthony's signature for examples of how it works and what it does then decide if this is what you are looking to use?

If it is what you want to use a link to the image and what method you intened to use would help.
by Bonzo
2007-07-02T10:46:16-07:00
Forum: Users
Topic: Compose problems...
Replies: 1
Views: 5606

Re: Compose problems...

With the -geometry you just need -geometry +4+4

Try

Code: Select all

composite -geometry +4+4 polaroid-overlay.png photo.png photo.png 
by Bonzo
2007-07-01T11:51:24-07:00
Forum: Users
Topic: Convert PDF to thumbnail JPG - no result
Replies: 2
Views: 7194

Re: Convert PDF to thumbnail JPG - no result

The first code example looks correct; try it with a pdf on your server first to see if it works ? I assume the images directory is CHMOD 777. P.S. When using something like image.psd[2] for the 3rd layer in a psd file I put 'image.psd[2]' in my php code. I am unsure what you would want to use; that ...
by Bonzo
2007-07-01T00:40:35-07:00
Forum: Users
Topic: How do I alter color balance in photos?
Replies: 1
Views: 8264

Re: How do I alter color balance in photos?

You could try "channel" loads of options: http://www.imagemagick.org/script/command-line-options.php#channel convert house.jpg -channel g -normalize adjust.jpg "Levels" for white point - no idea how to use that: http://www.imagemagick.org/script/command-line-options.php#level The...
by Bonzo
2007-06-28T05:17:08-07:00
Forum: Users
Topic: My wish was for the magic to create subtle glitter
Replies: 5
Views: 12513

Re: My wish was for the magic to create subtle glitter

This was the result of my test, I was going to look at it again tonight. The glitter effect is not great.
Image


I used the noise operator as well, impulse gave the best effect.
by Bonzo
2007-06-27T13:01:19-07:00
Forum: Users
Topic: My wish was for the magic to create subtle glitter
Replies: 5
Views: 12513

Re: My wish was for the magic to create subtle glitter

Needs a rethink and I can not delete this post !
by Bonzo
2007-06-22T12:34:16-07:00
Forum: Users
Topic: installation problem windows 2003 and php 5
Replies: 6
Views: 14834

Re: installation problem windows 2003 and php 5

As you say both -resize and -geometry work - I would not have thought they would :shock:

Anyway using a relative path to the image with php5 on my XAMMP server will work so as you say it looks like something to do with windows?
by Bonzo
2007-06-22T12:23:44-07:00
Forum: Users
Topic: Conditional change of resolution
Replies: 8
Views: 18057

Re: Conditional change of resolution

I am afraid I can not help then; the information can be obtained but as you says its then getting it into your application.
by Bonzo
2007-06-21T14:23:27-07:00
Forum: Users
Topic: Conditional change of resolution
Replies: 8
Views: 18057

Re: Conditional change of resolution

Sorry Clive I didn't fully digest your post, It is using php. I have never tried it but from a post on another forum about running php on a windows PC: You are able on window as well by using the command line. If you have PHP's path to the executable set in the PATH environment variable you can run ...
by Bonzo
2007-06-21T13:58:46-07:00
Forum: Users
Topic: installation problem windows 2003 and php 5
Replies: 6
Views: 14834

Re: installation problem windows 2003 and php 5

OK but I think you still need -resize not -geometry.
by Bonzo
2007-06-21T13:22:56-07:00
Forum: Users
Topic: installation problem windows 2003 and php 5
Replies: 6
Views: 14834

Re: installation problem windows 2003 and php 5

I do not know how it is working from the command line but as I see it you do not have an input image and -geometry is not for resizing. I do not Use mogrify so I can not be sure but try: <?php $cmd = "mogrify input.jpg -resize 80x60 C:\Inetpub\intranet\photos\logo.jpg"; exec($cmd); ?>
by Bonzo
2007-06-21T13:17:04-07:00
Forum: Users
Topic: Image Resolution
Replies: 2
Views: 7540

Re: Image Resolution

Not the best way to do this; I did have a better way but can not remember how to do it now ! <?php function GetGeometry($result) { global $original_width, $original_height; $start = strpos($result, "Resolution"); $result = substr($result, $start); $length = strpos($result, "\n");...
by Bonzo
2007-06-19T13:01:24-07:00
Forum: Users
Topic: CMYK to RGB Conversion problem
Replies: 7
Views: 20079

Re: CMYK to RGB Conversion problem

There may be an answer in Anthonys examples - http://www.imagemagick.org/Usage/
by Bonzo
2007-06-18T12:37:03-07:00
Forum: Users
Topic: Transparent PNG overlay onto colored background.
Replies: 7
Views: 18599

Re: Transparent PNG overlay onto colored background.

If you were on a later version you could use an fx comand to set the -size to match the original image although I have never been able to get this to work for me using php. If you are using this with php you can use getimagesize and put the width and height into variables then use these variables in...