Search found 13 matches
- 2013-03-06T04:02:02-07:00
- Forum: Developers
- Topic: Does ImageMagick uses more ram over PHP's gd image library
- Replies: 0
- Views: 4567
Does ImageMagick uses more ram over PHP's gd image library
I don't know which one to use because I am afraid Image Magick might take too much memory, I already worked on a filter program for the web which had about 30 im filters but I noticed it takes about 1 gb of ram every time a picture is filtered so I'm worried about keeping the resize functionality ...
- 2013-01-21T21:07:19-07:00
- Forum: Users
- Topic: Using a tilt shift effect that turns out to be very slow
- Replies: 3
- Views: 4530
Using a tilt shift effect that turns out to be very slow
convert ( image -gamma 0.75 -modulate 100,130 -contrast ) ( +clone -sparse-color Barycentric '0,0 black 0,%h white' -function polynomial 4,-4,1 -level 0,50% ) -compose blur -set option:compose:args 5 -composite image It is slooow, what is making it so slow, is it the function polynomial, how can I ...
- 2013-01-21T18:05:51-07:00
- Forum: Users
- Topic: I would like to achieve this effect with imagemagick
- Replies: 3
- Views: 4550
Re: I would like to achieve this effect with imagemagick
I'm stuck, I've reproduced the flag: convert -size 300x800 xc:#b32b2c red.png convert -size 300x800 xc:#fedb01 yellow.png convert -size 300x800 xc:#37a754 green.png convert red.png yellow.png green.png +append flag.png now how do I merge into image.png this flag, and before doing that, how do I go ...
- 2013-01-20T19:24:24-07:00
- Forum: Users
- Topic: I would like to achieve this effect with imagemagick
- Replies: 3
- Views: 4550
I would like to achieve this effect with imagemagick
Please see this photo, http://img689.imageshack.us/img689/3249/marleyc.png I would like to replicate the three colors band over an image, turning any image into such jamaican "bob marley" effect. It would be a red taken out of that image, a yellow, and a green. I don't know what else is in there ...
- 2013-01-19T20:49:22-07:00
- Forum: Users
- Topic: Different version of imagemagick, problem with convert
- Replies: 1
- Views: 2797
Re: Different version of imagemagick, problem with convert
I just ended up using /usr/local/bin/convert the full path to the exec and it all worked great
- 2013-01-19T19:37:06-07:00
- Forum: Users
- Topic: Different version of imagemagick, problem with convert
- Replies: 1
- Views: 2797
Different version of imagemagick, problem with convert
Exec is executing a different version of ImageMagick, With php, convert -version returns me: Version: ImageMagick 6.5.4-7 Whereas executing as root in the command line returns me: Version: ImageMagick 6.8.1-10 It seems I have convert in two places, /usr/local/bin/convert which gets executed from the ...
- 2013-01-13T17:32:52-07:00
- Forum: Users
- Topic: Polaroid effect in photos
- Replies: 2
- Views: 4040
Re: Polaroid effect in photos
I opted to leave it all in white without two border colors for this reason, thanks.
- 2013-01-13T15:16:54-07:00
- Forum: Users
- Topic: Polaroid effect in photos
- Replies: 2
- Views: 4040
Polaroid effect in photos
I have gotten the following line of code to give a polaroid effect like to photos: convert -caption "%c %f\\n%wx%h" filename.jpg -pointsize 18 -gravity south -splice 0x90 ( -bordercolor white -background white -border 59x59 -gravity center ) -border 1x1 -bordercolor "rgb(221,221,221)" -background ...
- 2012-12-13T04:23:57-07:00
- Forum: Users
- Topic: How to do this in ImageMagick, light tutorial on PhotoShop
- Replies: 8
- Views: 11671
Re: How to do this in ImageMagick, light tutorial on PhotoSh
Sent you a message as collapablo at gmail dot com
- 2012-12-12T12:33:15-07:00
- Forum: Users
- Topic: How to do this in ImageMagick, light tutorial on PhotoShop
- Replies: 8
- Views: 11671
Re: How to do this in ImageMagick, light tutorial on PhotoSh
I have time to wait, I am on Windows and ImageMagick-6.8.0-8-Q16 but could test on a virtual machine Linux and the final version in the server will be Linux, can try to implement with cygwin for localhost as it is on what I'm developing. But will definitely make the necessary tests on Linux. If you ...
- 2012-12-12T12:25:57-07:00
- Forum: Users
- Topic: How to do this in ImageMagick, light tutorial on PhotoShop
- Replies: 8
- Views: 11671
Re: How to do this in ImageMagick, light tutorial on PhotoSh
I have this PHP code which I am unsure if it does the right vignette fine. function vignette($input, $color_1 = 'none', $color_2 = 'black', $crop_factor = 1.5) { $img_resource_size=getimagesize($input); $img_resource_width=$img_resource_size[0]; $img_resource_height=$img_resource_size[1]; $crop_x ...
- 2012-12-12T10:42:57-07:00
- Forum: Users
- Topic: How to do this in ImageMagick, light tutorial on PhotoShop
- Replies: 8
- Views: 11671
Re: How to do this in ImageMagick, light tutorial on PhotoSh
You are a real genius on this from what I've seen on Fred's ImageMagick Scripts, is it too much to ask you for the command line syntax to achieve these simple steps. With ImageMagick some things are still chinese to me.
- 2012-12-11T14:33:46-07:00
- Forum: Users
- Topic: How to do this in ImageMagick, light tutorial on PhotoShop
- Replies: 8
- Views: 11671
How to do this in ImageMagick, light tutorial on PhotoShop
How to accomplish the X PRO II filter effect of Instagram but with ImageMagick command line instead of PhotoShop
Link to Photoshop tutorial:
http://iamiqbal87.blogspot.com/2012/04/ ... ffect.html
Link to Photoshop tutorial:
http://iamiqbal87.blogspot.com/2012/04/ ... ffect.html