Guest User

Untitled

a guest
Jan 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //code starts with this
  2.  
  3. $game0 = $GamerCard->Gamesimg[0];
  4. $game0 = imageCreateFromjpeg($game0);
  5.  
  6. //and here i place the image, though x changes each time
  7. $width = imagesx($game0);
  8. $height = imagesy($game0);
  9.  
  10. imagecopyresampled($gcard, $game0, 21, 10, 0, 0, 32, 32, $width, $height);
  11. imagedestroy($game0);
Add Comment
Please, Sign In to add comment