Naman Goyal
Results
2
comments of
Naman Goyal
@Belval Hey I have similar requirements. Let me put it again. The flags which control the final size of the image when using background-image are mainly, - size - width...
The only workaround seems setting `builtins.title` before running Following works ```python from p5 import * def setup(): # title("hellow") size(800,600) def draw(): pass builtins.title = "hellow" run() ```