Advertisement
mattierichardson

Untitled

Dec 12th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /* Mattie Richardson
  2. Trading card
  3. */
  4. PImage SD;
  5. PImage OC;
  6. PFont f;
  7. void setup() {
  8. size (400,600);
  9. background (210,170,216);
  10. SD=loadImage("SydneyDwyer.jpg");
  11. OC=loadImage("OrlandoCity.png");
  12. f = createFont ("Arial",16,true);
  13. }
  14. void draw (){
  15. SD.resize(320,260);
  16. image(SD,40,60);
  17. textFont (f,13);
  18. fill(0);
  19. OC.resize(200,200);
  20. image(OC,100,375);
  21.  
  22.  
  23. text("Sydney Dwyer is a Famous Orlando City Forward Soccer Player",20,350);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement