Re: dynamic image will not print properly

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



To test, 

cstl.php?dk=somethinghere

and try to print that?


Maybe your browser is configured to NOT print images (or bakckground) ?
Maybe your printer is textonly (just kidding)

Tada


Andy

On Tuesday 05 April 2005 23:26, DuSTiN KRySaK wrote:
> Hi there - I had my first crack at creating a dynamic image. The thing
> is - the image is displayed fine in the browser, but when you go to
> print it, the image is either missing, or part of it is missing. Is
> there something special needed to print a dynamic image?
>
> Here is a code snippet used to create the image....
>
> header("Content-type: image/jpg");
> $image = imagecreatefromjpeg("template_cpn.jpg");
> $red = imagecolorallocate( $image, 255,0,0 );
> imagestring($image, 2, 306, 200, $couponcode, $red);
> imagestring($image, 2, 306, 235, $exp, $red);
> imagestring($image, 2, 175, 338, $myname, $red);
> imagestring($image, 2, 175, 360, $myemail, $red);
> imagejpeg($image);
> imagedestroy($image);
>
> Now the way I have it set up, is that there is a PHP file that
> generates the image (the above code). Then I have a parent PHP page
> that calls that page like so:
>
> $theurl = "cstl.php?dk=soemthinghere
> echo "<img src=\"$theurl\">";
>
> See any issues in my code or setup?
>
> Any ideas?
>
> d

-- 
Registered Linux User Number 379093
--
Feel free to check out these few
php utilities that I released under the GPL2 and 
that are meant for use with a php cli binary:
http://www.vlaamse-kern.com/sas/
--

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux