Search found 2972 matches

by Bonzo
2006-06-17T14:51:36-07:00
Forum: Users
Topic: How do you use this with PHP?
Replies: 2
Views: 11797

ImageMagick can help in a couple of ways - resize images; add watermarks, frames and shadows. Note there is a good chance anything to do with text may not work - loads of people have problems with this . It will not work anyway if you are in "Safe mode". As to uploading the photos and disp...
by Bonzo
2006-06-15T15:09:17-07:00
Forum: Users
Topic: display, comment & identify
Replies: 4
Views: 15102

display, comment & identify

I seem to have everything working using php now apart from display, comment & identify. As far as I can see in the posts I will only be ably to get display to work with an X server whatever that is? But why cant I get comment or identify to work ? Code I have tried: exec("/usr/local/bin/con...
by Bonzo
2006-06-13T15:17:15-07:00
Forum: Users
Topic: Path Name
Replies: 0
Views: 6450

Ask your host what the "path to imagemagick" is.

If you are using a php based gallery it should be something like /usr/local/bin/

An other way if the gallery has a froum ask what other people there are using.

Anthony
by Bonzo
2006-06-11T06:14:44-07:00
Forum: Users
Topic: resize to fixed width
Replies: 1
Views: 10212

Thanks chovy; I try to be of help.

Anthony
by Bonzo
2006-06-11T02:43:21-07:00
Forum: Users
Topic: Another text watermark question
Replies: 4
Views: 17612

I finaly have this working although I need to sort ot some details and get the label and append working. My host uploaded the latest version of the code and it still didn't work then they uploaded the "ghostscript " what ever that is and it worked. Anthony http://www.rubblewebs.co.uk/image...
by Bonzo
2006-06-11T02:28:45-07:00
Forum: Users
Topic: resize to fixed width
Replies: 1
Views: 10212

If you are using php chovy I have two examples on my site.

1/ Resize on upload.

2/ Resize a whole folder full of images.

Anthony

http://www.rubblewebs.co.uk/imagemagick/thumbnail.php

http://www.rubblewebs.co.uk/imagemagick/code.php
by Bonzo
2006-06-07T12:13:07-07:00
Forum: Users
Topic: WhiteSpace Help
Replies: 1
Views: 10120

If you look half way down the page of the first link you will see a thumbnail with "Skyblue" padding which I thought was the effect you wanted. " Pad Out the Image " I tried the first 2 examples and the first one didn't work for me and the second one would only work if I output a...
by Bonzo
2006-06-07T10:53:21-07:00
Forum: Users
Topic: Extract multiple images from the one source image?
Replies: 3
Views: 13756

Thats beyond me then Ben !

By the way you have an interesting site, I would have liked to see the damage to your car after the hailstones hit it. Can you do that again and get some pictures of the damge next time :)

Anthony
by Bonzo
2006-06-07T10:49:08-07:00
Forum: Users
Topic: Display \n in the text
Replies: 3
Views: 13536

I am afraid I can not help then vav. The only other things I would try are: 1/ test/ntest - thats a laugh as the forum changed & # 4 7 ; to / ( I have added extra spaces to see if it will display ) 2/ Try putting 'test\ntest' into a variable and use the variable in the convert comand instead. An...
by Bonzo
2006-06-06T15:28:40-07:00
Forum: Users
Topic: WhiteSpace Help
Replies: 1
Views: 10120

Look at this example page:

http://www.cit.gu.edu.au/~anthony/graph ... humbnails/

Anthony

P.S. If you are looking to do this with php I have some example code at http://www.rubblewebs.co.uk/imagemagick/code.php that you should be able to modify.
by Bonzo
2006-06-06T13:52:26-07:00
Forum: Users
Topic: how to use native imagemagick extension from a php script
Replies: 7
Views: 27050

One step forward one step back ! I put loads of echo statements in my code when I get a problem like that as it tells you what each variable contains. Looks like in your case you seem to have lost the file extension somewhere as its trying to open /tmp/phphHd66D which is not an image. I would put $o...
by Bonzo
2006-06-06T12:51:04-07:00
Forum: Users
Topic: how to use native imagemagick extension from a php script
Replies: 7
Views: 27050

I would try saving the path to a variable then using the variable in the code. $new_name = '/home/user/public_html/temp/temp_image.jpg'; exec("/usr/local/bin/convert $file -thumbnail 100x100 $new_name"); I used to think you had to use the full path from server root but am not sure now. All...
by Bonzo
2006-06-06T12:25:05-07:00
Forum: Users
Topic: how to use native imagemagick extension from a php script
Replies: 7
Views: 27050

I am glad to have been of help David.

There is so much to learn with ImageMagick and I am just trying things out a bit at a time.

Anthony
by Bonzo
2006-06-06T11:50:20-07:00
Forum: Users
Topic: how to use native imagemagick extension from a php script
Replies: 7
Views: 27050

My code does work OK ridera 8)

Out of interest I have just tried out a creating a thumbnail using ImageMagick and GD. There does not look a lot of difference to me !
The IM version looks to contain a bit more colour.

http://www.rubblewebs.co.uk/imagemagick ... ompair.php

Anthony
by Bonzo
2006-06-06T11:13:13-07:00
Forum: Users
Topic: how to use native imagemagick extension from a php script
Replies: 7
Views: 27050

I think my code is OK ridera; I only needed the { } around the array variables but not the normal variables. I will check again later; if I get time ! I am not sure exactly about this noodleboy but the \ tells the code that the comand carries onto the next line as you say. A couple of things I would...