Search found 237 matches

by agriz
2011-11-13T12:57:18-07:00
Forum: Users
Topic: Imagemagick and GD
Replies: 4
Views: 9127

Imagemagick and GD

Hi I can see Imagemagick is using huge ram. But it is easier to do. I just want to know which is best. For some cases, GD is not at all possible. I have an Image, which will have transparent area (upto 15) I have to resize and fill 15 different images in those area. Which is best to handle this? Ima...
by agriz
2011-11-05T19:28:12-07:00
Forum: Users
Topic: Text with reapeated background?
Replies: 4
Views: 8904

Re: Text with reapeated background?

I will check out those example and let you know today
by agriz
2011-11-05T10:32:14-07:00
Forum: Users
Topic: Text with reapeated background?
Replies: 4
Views: 8904

Re: Text with reapeated background?

I want to tile. I will explain it in detail convert -background gray -gravity center -fill blue -font Ravie -pointsize 24 -size 360x caption:'test\ntest\ntest' image.jpg I use this code. * I have an background image with 100*100 size * I want to tile that image while creating text (image). The above...
by agriz
2011-11-05T04:08:28-07:00
Forum: Users
Topic: Text with reapeated background?
Replies: 4
Views: 8904

Text with reapeated background?

Hi,

There will be few lines of text (variable lengths)
If i have a background image with fixed width, how can i use the text to extend that background to create an image?
by agriz
2011-10-17T13:02:07-07:00
Forum: IMagick
Topic: Font Problem
Replies: 0
Views: 5282

Font Problem

இணைப்புகள்

This text is unicode written using Latha.ttf

But out looks like this. You can see some text are in wrong position
Image
by agriz
2011-10-17T10:32:18-07:00
Forum: IMagick
Topic: Lable single quotes problem
Replies: 2
Views: 8953

Re: Lable single quotes problem

Thanks!
by agriz
2011-10-12T14:04:40-07:00
Forum: Users
Topic: How to create animated glitters with PHP and imagemagick
Replies: 11
Views: 20744

Re: How to create animated glitters with PHP and imagemagic

Any script.. just asked.. never mind!
by agriz
2011-10-12T12:42:55-07:00
Forum: Users
Topic: How to create animated glitters with PHP and imagemagick
Replies: 11
Views: 20744

Re: How to create animated glitters with PHP and imagemagic

Just asking can track how much memory does this script uses?
by agriz
2011-10-12T10:45:01-07:00
Forum: Users
Topic: How to create animated glitters with PHP and imagemagick
Replies: 11
Views: 20744

Re: How to create animated glitters with PHP and imagemagic

Can i get the resource usage?
by agriz
2011-10-12T01:58:34-07:00
Forum: Users
Topic: How to create animated glitters with PHP and imagemagick
Replies: 11
Views: 20744

Re: How to create animated glitters with PHP and imagemagic

convert rose: -compose Screen \ \( -clone 0 stars1.gif -composite \) \ \( -clone 0 stars2.gif -composite \) \ \( -clone 0 stars3.gif -composite \) \ -delete 0 -set delay 25 -layers Optimize rose_sparkle.gif This is working perfectly. But how to tile the glitter if the image is bigger? convert rose: ...
by agriz
2011-10-02T06:49:41-07:00
Forum: IMagick
Topic: Glitter over image
Replies: 1
Views: 7076

Glitter over image

$code0 = "$convert $transparent -resize 500!x375! $temp_transparent"; $code1 = "$convert $glitter -virtual-pixel tile -set option:distort:viewport 500x375 -distort SRT 0 $temp_glitter"; $code2 = "$composite -compose ATop -geometry +0+0 $temp_transparent $original_image $tem...
by agriz
2011-10-01T02:23:52-07:00
Forum: IMagick
Topic: Lable single quotes problem
Replies: 2
Views: 8953

Lable single quotes problem

$text = "test"; //works
$text = "this's"; //not working

$string = " -background transparent" . " -font '{$font}'". " -pointsize {$font_size}". " -gravity center label:'".$text."'".$stroking;

How to fix this?