Search found 2972 matches

by Bonzo
2007-02-20T07:04:58-07:00
Forum: Users
Topic: when creating thumbnails, c. 15% of the time negative of ori
Replies: 15
Views: 40907

Re: when creating thumbnails, c. 15% of the time negative of ori

I am using 6.2.8 and have never had a problem with thumbnails.
by Bonzo
2007-02-20T07:03:55-07:00
Forum: Users
Topic: when creating thumbnails, c. 15% of the time negative of ori
Replies: 15
Views: 40907

Re: when creating thumbnails, c. 15% of the time negative of ori

You need to put it on the web somewhere then add a link to it.

If magick or Anthony read this they may tell you how you could email it to them or use some other method.

I only use php and seeing your last post I can see php is not of any help !

Sorry :?
by Bonzo
2007-02-20T06:47:35-07:00
Forum: Users
Topic: when creating thumbnails, c. 15% of the time negative of ori
Replies: 15
Views: 40907

Re: when creating thumbnails, c. 15% of the time negative of ori

You should be able to use -identify but it never worked for me.

Anthony has posted this bit of code which will tell you.

Code: Select all

<?php
header("Content-Type: text/plain"); 
system("exec 2>&1; convert -version"); 
?>
by Bonzo
2007-02-18T11:48:05-07:00
Forum: Users
Topic: text justify command ??
Replies: 4
Views: 14212

Re: text justify command ??

I am not sure what you are after but this post may answer your question ?

http://redux.imagemagick.org/discourse- ... f=1&t=8042
by Bonzo
2007-02-10T12:36:24-07:00
Forum: Users
Topic: Confused on the -draw option
Replies: 10
Views: 26775

Re: Confused on the -draw option

Perhaps I have it the wrong way around and the second set of numbers is the distance from the center of the circle to a point on the circumferance - I have only used circle once before ! That means: circle 50,30 40,10 has a rad of 22.36 and circle: 50,30 50,10 has a rad of 10 That looks better; its ...
by Bonzo
2007-02-10T12:30:21-07:00
Forum: Users
Topic: Confused on the -draw option
Replies: 10
Views: 26775

Re: Confused on the -draw option

The point on the circumferance ( as el_supremo says ) needs fixing in the X and Y direction. Center point of the circle from top left corner in X = 50 Center point of the circle from top left corner in Y = 30 Start point of the circle from top left corner in X = 40 Start point of the circle from top...
by Bonzo
2007-02-10T12:17:49-07:00
Forum: Users
Topic: Confused on the -draw option
Replies: 10
Views: 26775

Re: Confused on the -draw option

The second 2 numbers are where the cicle is drawn from; I would have written it like:

Code: Select all

"circle 50,30 50,10"
This would give you a circle with the center at X50 Y30 and the radius would be 30 - 10 = 20

Th radius in the original example would have been 22.36 ?
by Bonzo
2007-02-10T11:22:06-07:00
Forum: Users
Topic: Confused on the -draw option
Replies: 10
Views: 26775

Re: Confused on the -draw option

From memory :
Center point of the circle from top left corner in X = 50
Center point of the circle from top left corner in Y = 30

Start point of the circle from top left corner in X = 40
Start point of the circle from top left corner in Y = 10
by Bonzo
2007-02-10T02:51:31-07:00
Forum: Users
Topic: What is the best way to call IM from a webpage?
Replies: 9
Views: 23154

Re: What is the best way to call IM from a webpage?

I use php with exec; there is so much you can do with it when incorperating IM into the php code. I think you also have more control.

There is a link below in my profile to my site with some php and IM examples; I think I need to go over and update some of them as they are quite old now.
by Bonzo
2007-02-08T11:21:02-07:00
Forum: Users
Topic: combining two images
Replies: 8
Views: 25537

Re: combining two images

Hello Richard I have just had a go at your problem but my server does not seem to understand tif ! Anyway on downloading untitled.png my PC kept renaming it to a .bmp could there be a problem with this file ? I change the black on the untitled file to transparent and saved it as a png then tried a c...
by Bonzo
2007-02-07T11:57:39-07:00
Forum: Users
Topic: Transparent, rounded corners
Replies: 12
Views: 64828

Re: Transparent, rounded corners

This is some code for DstIn and DstOut; the transparency is showing up black - I got over this before but can not remember how I did it. Hopefuly Anthony will read this post and put me straight :D http://www.rubblewebs.co.uk/imagemagick/tests/makrell66.php exec("/usr/local/bin/convert -size 358...
by Bonzo
2007-02-07T11:14:22-07:00
Forum: Users
Topic: Transparent, rounded corners
Replies: 12
Views: 64828

Re: Transparent, rounded corners

You could do that; I tried it out before and the result is at the bottom of this page: http://www.rubblewebs.co.uk/imagemagick/other.php exec("/usr/local/bin/convert snow.jpg -composite masktemp2.png -composite temp2.png"); exec("/usr/local/bin/convert temp2.png -transparent PeachPuff...
by Bonzo
2007-02-06T14:12:49-07:00
Forum: Users
Topic: How to copy only the red channel?
Replies: 5
Views: 28550

Re: How to copy only the red channel?

Try this, it was from Anthonys examples.

Code: Select all

exec("/usr/local/bin/convert imageIn_RGB.tif -channel BG -fx 0 imageOut_R.tif");
by Bonzo
2007-02-06T11:46:34-07:00
Forum: Users
Topic: Transparent, rounded corners
Replies: 12
Views: 64828

Re: Transparent, rounded corners

To make the colour in an image transparent you can do this.

Code: Select all

exec("/usr/local/bin/convert start_image.jpg -transparent red output_image.gif");
by Bonzo
2007-02-05T15:41:48-07:00
Forum: Users
Topic: convert pdf to jpg
Replies: 5
Views: 21531

Re: convert pdf to jpg

I have not used pdf but as far as I can tell you are trying to convert layer 0 to a jpg ?
Have you tried:

Code: Select all

exec("convert '1.pdf[0]' 1.jpg");