Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: Tomi on January 24, 2024, 01:48:38 pm

Title: Error at image creating
Post by: Tomi on January 24, 2024, 01:48:38 pm
Hello!

I'm using wxWidgets 3.0.x with wxSmith and I would like show images on the screen.
I wrote this code for this:

Code
class SpaceShip {
public:
    SpaceShip (int xh, int yh) {
        xplace = xh;
        yplace = yh;
    };
    int xplace, yplace;
    wxBitmap itsimage=wxImage(_T("C:\\Users\\Tomi\\Desktop\\spaceship.png")); //Warning: Unknown image data format
};
SpaceShip* spship=new SpaceShip(200,200); //If I comment out this line, everything is OK, because nothing call the class above. Maybe am'I create this on wrong place?

class BlueDot {
public:
    BlueDot(int xh, int yh) {
        xplace = xh;
        yplace = yh;
    };
    int xplace, yplace;
    wxBitmap itsimage=wxImage(_T("C:\\Users\\Tomi\\Desktop\\bluedot.png")); //Here works well...
};
std::vector<BlueDot> bluedots;

Then I paint the instances of these classes:

Code
void wxw30testprogFrame::OnPaint(wxPaintEvent& event)
{
    wxPaintDC dc(this);
    wxBitmap bitmap(spship->itsimage);
    dc.DrawBitmap(bitmap, spship->xplace,spship->yplace, false);

    for (int i=0; i<bluedots.size(); i++) {
        wxPaintDC dc(this);
        wxBitmap bitmap(bluedots[i].itsimage);
        dc.DrawBitmap(bitmap, bluedots[i].xplace,bluedots[i].yplace, false);
    };
}

At the spaceship.png I get an error message from its unknown image data format. But this method at BlueDot class works well. What is wrong?
Title: Re: Error at image creating
Post by: Miguel Gimenez on January 24, 2024, 02:04:29 pm
Did you call wxInitAllImageHandlers() (https://docs.wxwidgets.org/trunk/group__group__funcmacro__appinitterm.html#ga27f6c78d5d13374a28022b7bd44c6823)?

This is OT here, next time you should ask in the wxWidgets' forum.
Title: Re: Error at image creating
Post by: Tomi on January 24, 2024, 02:31:10 pm
Yes, I tried with wxInitAllImageHandlers(), but the problem is the same.
I think, the problem really is not with the image format, but I create the instance of the SpaceShip on wrong place -  then, where is the good declaration place of it  in the code?

P.S.: sorry if this is an offtopic...  :-[
Title: Re: Error at image creating
Post by: Miguel Gimenez on January 24, 2024, 02:37:25 pm
Programmng issues are OT here, sorry.