Guest User

Untitled

a guest
Jun 11th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. PImage foto;
  2. PShape sekil;
  3. PFont mono;
  4.  
  5. void setup() {
  6. size(650, 785);
  7. foto = loadImage("tattoocon.jpg");
  8. mono = loadFont("Avenir-Light-48.vlw");
  9. }
  10.  
  11. void draw() {
  12. background(0);
  13. image(foto, 0, 0);
  14. fill(255);
  15. noStroke();
  16. rect(44,595,140,140);
  17. textFont(mono);
  18. fill(255, 255, 255);
  19. text("Tattoo Convention 2017", 10, 70);
  20. fill(0,0,0);
  21. rect(250,540,380,140);
  22. fill(255,255,255);
  23. text("1 JULY 2017", 250, 650);
  24. text("Zorlu PSM Center", 250, 600);
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment