I am lost on this....

pdf_open_image();

i am creating an image...
can i do this....

  $image = ImageCreateTrueColor(100, 100);
  $red = ImageColorAllocate ($image, 255, 0, 0);
  $blue = ImageColorAllocate ($image, 0, 0, 255);
  ImageFilledRectangle($image, 0, 0, 100, 100, $red);
  ImageFilledRectangle($image, 20, 20, 80, 80, $blue);
  $temp1 = pdf_open_image($pdf, "jpeg", "memory", $image ----LOST ME HERE
!!!!!!

please show me the way !!!!!


Thanks
        Joel




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

Reply via email to