Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PImage foto;
- PShape sekil;
- PFont mono;
- void setup() {
- size(650, 785);
- foto = loadImage("tattoocon.jpg");
- mono = loadFont("Avenir-Light-48.vlw");
- }
- void draw() {
- background(0);
- image(foto, 0, 0);
- fill(255);
- noStroke();
- rect(44,595,140,140);
- textFont(mono);
- fill(255, 255, 255);
- text("Tattoo Convention 2017", 10, 70);
- fill(0,0,0);
- rect(250,540,380,140);
- fill(255,255,255);
- text("1 JULY 2017", 250, 650);
- text("Zorlu PSM Center", 250, 600);
- }
Advertisement
Add Comment
Please, Sign In to add comment