Magickwand creating images from scratch

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
bluntmike
Forum Newbie
Posts: 1
Joined: Thu Mar 22, 2007 5:57 am

Magickwand creating images from scratch

Post by bluntmike »

Hi,

I have been looking around for a tutorial using ImageMagick to CREATE an image.

I have done this project using GD and GDs anti-aliasing isn't up to scratch (drawing a SINE graph for sound wave type diagrams).

All that I have seen is tutorials on how to 'create' an image by reading in another image...

Anyone know of any good tutorials using MagickWand and PHP for drawing etc. I have seen the Sitepoints tutorial but that is a bit too basic.

Thx
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Re: Magickwand creating images from scratch

Post by onion2k »

bluntmike wrote:I have done this project using GD and GDs anti-aliasing isn't up to scratch (drawing a SINE graph for sound wave type diagrams).
Imagemagick's antialiasing isn't much better than GD's. I'd either use the usual resampling cheat or draw it using something else (canvas, SVG, etc).
Post Reply