Is it possible to display VGA image on the screen?
-
Anybody know the method to display or resize VGA image (640x480) on the LCD screen?
It seems like the LCD size is only 240x135 right? -
@pnnato the screen of the M5Stack is 320X240. VGA can be displayed but half of it will be offscreen.
What programming environment are you using?
-
@pnnato the screen of the M5Stack is 320X240. VGA can be displayed but half of it will be offscreen.
What programming enviroment are you using?
-
@ajb2k3 I see ... I'm using Python on MaixPy IDE
-
With C its possible to resize image.
Most likely its possible with python too.
But keep in mind that if you gonna do that 'on the fly' you FPS would drop significantlyhttps://pypi.org/project/python-resize-image/
Not sure it can be implented with MaixPy tho -
@thrasher I don’t know about miaxpy but you can resize in micro python
-
img.resize(240, 135)