Error I get:
Catchable fatal error: Object of class Image could not be converted to string in /home/aerotronic.nl/public_html/html2ps/output.fastps.class.php on line 146
I use PHP 5.2+. Mostly this error appears on newer installtions of PHP (I found out after googling)
The problems are caused by:
$this->write(sprintf("%.2f %.2f %s %s {%s} %d %d image-create image-show\n",
$size_x * $scale_x ,
$size_y * $scale_y,
($mask !== "" ? $mask : "/null"),
$image,
$init,
$size_y,
$size_x));
We can convert the object $image to a string with fread(), but that gives errors when printing (and a PHP warning which could be surpressed).
I use the stable version of the software. Choosing not to render the images produces very nice and sweet output! My compliments! (With this, I can be able to automate the whole order printing process. Not that it saves that much time, but it is also just for fun).
By the way, in the stable release, I found a typo: pushCSS instead of push_css. This has been corrected in dev version already.