ImgMake
v0.01 |
hudecek.dev
c = canvas(1000, 400); bg = image("https://imgmake.com/test/background.jpg"); logo = image("https://imgmake.com/test/logo.png"); f1 = googlefont("Noto Serif", "900"); f2 = googlefont("Zeyada", "regular"); put(bg, c, "cover"); put(logo, c, 20, 20, 150); setfont(c, f1); color(c, "#fff"); text("Hello world!", c, 55, 190, 70); setfont(c, f2); color(c, "#ff0"); text("Lorem ipsum dolor sit amet", c, 50, 190, 110); show(c);
Run (Ctrl+Enter)