Search found 6 matches

by iscripts
2014-07-09T04:46:54-07:00
Forum: Users
Topic: doming effect for texts/images
Replies: 2
Views: 2125

doming effect for texts/images

hello guys.. is there any way that we can add a doming effect (doming is a process of applying a clear resin coating to any vinyl graphic or coated label, it gives the graphic a 3-D effect) to texts/images in imagemagick? i have seen the shade effect, its quite close to what i want, but i cant seem ...
by iscripts
2012-12-18T05:21:49-07:00
Forum: Users
Topic: issue - bending text using imagick api
Replies: 1
Views: 2996

issue - bending text using imagick api

hello guys.. im using imagick api to generate bent texts. it works ok on some occasions, but with some of the fonts, the bending goes berserk. here is the code snippet:- $image = new Imagick(); $draw = new ImagickDraw(); $pixel = new ImagickPixel('gray'); $draw->setGravity(imagick::GRAVITY_CENTER ...
by iscripts
2012-05-09T05:02:57-07:00
Forum: Users
Topic: converting jpeg to transparent png
Replies: 1
Views: 11211

converting jpeg to transparent png

hello guys.. here is the issue, i need to convert jpeg images(having white backgrounds) to transparent png images. this is the code being used at the moment:- system("convert img.jpg -fuzz 10% -transparent white img.png"); now the images do get converted, but it isnt perfect. most of the images end ...
by iscripts
2012-03-24T05:16:29-07:00
Forum: Users
Topic: Drawing lines using imagemagick
Replies: 3
Views: 11644

Drawing lines using imagemagick

greetings everyone.. We have this application where we accept signatures from users and convert it into transparent png images which we then use for printing purposes. the web interface we are using is the wonderful signature pad by Thomas Bradley http://thomasjbradley.ca/lab/signature-pad/ it ...
by iscripts
2011-11-14T22:54:02-07:00
Forum: Users
Topic: bending text using imagick api
Replies: 4
Views: 10327

Re: bending text using imagick api

thanks everyone for your replies esp. bonzo, it was a silly mistake on my part, i was using the wrong object to make the function call. i was using $image->setGravity( Imagick::GRAVITY_CENTER ); instead of $draw->setGravity( Imagick::GRAVITY_CENTER ); it works perfectly now.. thanks again..
by iscripts
2011-11-14T05:32:45-07:00
Forum: Users
Topic: bending text using imagick api
Replies: 4
Views: 10327

bending text using imagick api

greetings everyone.. i have run into an issue with bending text using the imagick api. our server hosting team decided to block all shell commands which were being used earlier to execute commands in imagmagick. so i had to move on to the imagick api that is available for php. while i was able to ...