X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/223d09f6b523aac674ef9b72a883dfa8d37c5d4e..61f0d452ea7e47fea18d0ab748095dc42d7dd66d:/src/common/imagpnm.cpp?ds=sidebyside diff --git a/src/common/imagpnm.cpp b/src/common/imagpnm.cpp index d29174929c..c2ed7bf13c 100644 --- a/src/common/imagpnm.cpp +++ b/src/common/imagpnm.cpp @@ -41,12 +41,11 @@ IMPLEMENT_DYNAMIC_CLASS(wxPNMHandler,wxImageHandler) void Skip_Comment(wxInputStream &stream) { - wxString line; wxTextInputStream text_stream(stream); - if (stream.Peek()==wxT('#')) + if (stream.Peek()==wxT('#')) { - text_stream >> line; + text_stream.ReadLine(); Skip_Comment(stream); } } @@ -55,9 +54,8 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool WXUNUSE { wxUint32 width, height; wxUint16 maxval; - wxString line; char c(0); - + image->Destroy(); /* @@ -73,21 +71,21 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool WXUNUSE switch (c) { case wxT('2'): - wxLogError(wxT("Loading Grey Ascii PNM image is not yet implemented.")); - return FALSE; + wxLogError(wxT("Loading Grey Ascii PNM image is not yet implemented.")); + return FALSE; case wxT('5'): - wxLogError(wxT("Loading Grey Raw PNM image is not yet implemented.")); - return FALSE; + wxLogError(wxT("Loading Grey Raw PNM image is not yet implemented.")); + return FALSE; case wxT('3'): case wxT('6'): break; - default : - wxLogError(wxT("Loading PNM image : file not recognized.")); - return FALSE; + default : + wxLogError(wxT("Loading PNM image : file not recognized.")); + return FALSE; } - text_stream >> line; // for the \n + text_stream.ReadLine(); // for the \n Skip_Comment(buf_stream); text_stream >> width >> height ; - Skip_Comment(buf_stream); + Skip_Comment(buf_stream); text_stream >> maxval; //cout << line << " " << width << " " << height << " " << maxval << endl; @@ -96,25 +94,25 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool WXUNUSE if (!ptr) { wxLogError( wxT("Cannot allocate RAM for RGB data in PNM file.") ); - return FALSE; + return FALSE; } if (c=='3') // Ascii RBG - { - wxUint32 value, size=3*width*height; - for (wxUint32 i=0; iGetWidth() << " " << image->GetHeight() << endl + + //text_stream << "P6" << endl + //<< image->GetWidth() << " " << image->GetHeight() << endl //<< "255" << endl; text_stream << "P6\n" << image->GetWidth() << " " << image->GetHeight() << "\n255\n"; stream.Write(image->GetData(),3*image->GetWidth()*image->GetHeight()); @@ -137,19 +135,22 @@ bool wxPNMHandler::SaveFile( wxImage *image, wxOutputStream& stream, bool WXUNUS return (stream.LastError()==wxStream_NOERROR); } -bool wxPNMHandler::CanRead( wxInputStream& stream ) +bool wxPNMHandler::DoCanRead( wxInputStream& stream ) { - off_t pos=stream.TellI(); + off_t pos = stream.TellI(); Skip_Comment(stream); - if (stream.GetC()==wxT('P')) - switch (stream.GetC()) - { - case wxT('3'): case wxT('6'): - stream.SeekI(pos); - return TRUE; - } + if ( stream.GetC() == 'P' ) + { + switch (stream.GetC()) + { + case '3': + case '6': + stream.SeekI(pos); + return TRUE; + } + } stream.SeekI(pos); return FALSE;