Search found 22 matches

by sambessey
2008-12-26T11:50:56-07:00
Forum: MagickWand for PHP
Topic: Word Wrapping in MagickWand
Replies: 7
Views: 26603

Re: Word Wrapping in MagickWand

Anyone?
by sambessey
2008-12-20T15:37:30-07:00
Forum: MagickWand for PHP
Topic: Word Wrapping in MagickWand
Replies: 7
Views: 26603

Re: Word Wrapping in MagickWand

Sorry I am still a newbie to this, maybe I am doing something wrong, but: <?php session_start(); $mw = NewMagickWand(); MagickSetSize($mw,250,100); MagickReadImage($mw, "caption:HELLO WORLD"); #MagickEchoImageBlob($mw); MagickWriteImage($mw,"caption.gif"); ?> 1) I can't blob the ...
by sambessey
2008-12-20T03:56:51-07:00
Forum: MagickWand for PHP
Topic: Quick Heads Up/ Question RE: Manual
Replies: 1
Views: 10735

Quick Heads Up/ Question RE: Manual

Hi,

In the Magickwand for PHP Manual, there is this entry:

MagickPaintOpaqueImage -- changes the color of any pixel in the current active image that matches a target color

This is in fact incorrect- it should be MagickOpaquePaintImage

Thanks
by sambessey
2008-12-17T04:53:28-07:00
Forum: MagickWand for PHP
Topic: Word Wrapping in MagickWand
Replies: 7
Views: 26603

Re: Word Wrapping in MagickWand

Hi, I want to avoid mixing ImageMagick commands in with the MagickWand API (Plus I can't do exec commands on my web server). I know I can roll my own, but I am sure having the caption: functionality built into the code would be far faster than anything I can write in PHP to do this.. Are there any p...
by sambessey
2008-12-16T13:47:57-07:00
Forum: MagickWand for PHP
Topic: Word Wrapping in MagickWand
Replies: 7
Views: 26603

Word Wrapping in MagickWand

Hi,

Is there a way of wordwrapping text in MagickWand for PHP? The forums reveal little helpful stuff....

Thanks
by sambessey
2008-04-07T07:52:55-07:00
Forum: MagickWand for PHP
Topic: Getting Rid of Red Eye using MagickWand For PHP?
Replies: 0
Views: 9764

Getting Rid of Red Eye using MagickWand For PHP?

Hi

Can anyone help me out here please? Really struggling with this one... Should I be using a pixel iterator to do this somehow?

Thanks
by sambessey
2008-01-04T18:28:45-07:00
Forum: MagickWand for PHP
Topic: MagickEchoImageBlob- want to output this alongside HTML
Replies: 0
Views: 8755

MagickEchoImageBlob- want to output this alongside HTML

Hi I am trying to blob the image being held in memory (after processing) as part of an HTML page, but I cannot get it to work as it is expecting the doctype to be image/gif when it is in fact HTML. All I get is either the image and no HTML, or HTML and junk where the image should be. This is the pro...