2D array into graphicview to create Objects from 2D-Array
-
can't go on i will look From Matrix to QImage and QPixmap on forum.. maybe that will help
-
Hi,
Do you mean you have a two dimensional array of chars that you want to build a grid with and that each of the cell of that grid shall contain the letter at that point of the array ?
-
This post is deleted!
-
This post is deleted!
-
@projectbavaria ![alt text]( image url)
-
![0_1590505663278_14df9cf0-9d3f-4008-97bc-f55769443621-image.png](Uploading 100%)
now i getting a black screen and try to go on
-
From what you posted, there's nothing added to the scene and your view seems to be a local variable so unless it's in your main function body, it will be destroyed before you can even see it.
-
Except that you are not using your array to draw anything. You are using a QBitArray which contains nothing to draw on a image that you then use as brush.
You should start by just drawing on that QImage properly and set it on a QLabel to see what it would look like. And once you have that working, come back to your QGraphicsView part.