Witam.

Mam taki oto sobie skypt:
  1. <?php
  2. /* Create the object and create the image */
  3. $im = new Imagick( 'chev7_orig.png' );
  4. /* Create a new ImagickDraw object
  5.    This is used to set polaroid properties */
  6. $draw = new ImagickDraw();
  7. /* Set the fill color to light blue */
  8.  
  9. $draw->setFillColor( new ImagickPixel( 'light blue' ) );
  10. /* Create the polaroid image */
  11. $im->polaroidImage( $draw, 20 );
  12. /* Output */
  13. header( "Content-Type: image/png" );
  14. echo $im;
  15. ?>

Wszystko działa, tylko, że tło mi się czarne robi, a nie powinno. Testuje to na localhoscie (xampp). Ma ktoś jakieś pomysły?

Mam wersje 2.1.0-rc3