Advertisement
dmontal2

black_hawk

Jul 22nd, 2011
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2. ##################################################
  3. # 1 BLACK PIXEL APPEARS IN AT 0,0 ON ALL IMAGES...
  4. ##################################################
  5.  
  6. $gd = imagecreatetruecolor($ex3[$x], $ey3[$x]);
  7. imagefilledrectangle($gd, 0, 0, $ex3[$x], $ey3[$x], imagecolorallocate($gd, 255, 255, 255));
  8. $bk = imagecolorallocate($gd, 0, 0, 0);//BLACK
  9. $wh = imagecolorallocate($gd, 255, 255, 255);//WHITE
  10.  
  11.  
  12. imagesetpixel($gd, $exx[$i], $eyy[$i], $bk);//DRAW
  13. imagesetpixel($gd, 0, 0, $wh);//FIX FOR BLACK PIXEL (COLOR WHITE)
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement