]>
git.saurik.com Git - wxWidgets.git/blob - src/common/imaggif.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/imaggif.cpp
3 // Purpose: wxGIFHandler
4 // Author: Vaclav Slavik & Guillermo Rodriguez Garcia
6 // Copyright: (c) 1999 Vaclav Slavik & Guillermo Rodriguez Garcia
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
17 #if wxUSE_IMAGE && wxUSE_GIF
24 #include "wx/imaggif.h"
25 #include "wx/gifdecod.h"
26 #include "wx/wfstream.h"
28 IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler
,wxImageHandler
)
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
36 bool wxGIFHandler::LoadFile(wxImage
*image
, wxInputStream
& stream
,
37 bool verbose
, int index
)
44 decod
= new wxGIFDecoder(&stream
, true);
45 error
= decod
->ReadGIF();
47 if ((error
!= wxGIF_OK
) && (error
!= wxGIF_TRUNCATED
))
54 wxLogError(_("GIF: error in GIF image format."));
57 wxLogError(_("GIF: not enough memory."));
60 wxLogError(_("GIF: unknown error!!!"));
68 if ((error
== wxGIF_TRUNCATED
) && verbose
)
70 wxLogError(_("GIF: data stream seems to be truncated."));
71 /* go on; image data is OK */
76 // We're already on index = 0 by default. So no need
77 // to call GoFrame(0) then. On top of that GoFrame doesn't
78 // accept an index of 0. (Instead GoFirstFrame() should be used)
79 // Also if the gif image has only one frame, calling GoFrame(0)
80 // fails because GoFrame() only works with gif animations.
81 // (It fails if IsAnimation() returns false)
82 // All valid reasons to NOT call GoFrame when index equals 0.
85 ok
= decod
->GoFrame(index
);
91 ok
= decod
->ConvertToImage(image
);
95 wxLogError(_("GIF: Invalid gif index."));
103 bool wxGIFHandler::SaveFile( wxImage
* WXUNUSED(image
),
104 wxOutputStream
& WXUNUSED(stream
), bool verbose
)
107 wxLogDebug(wxT("GIF: the handler is read-only!!"));
112 bool wxGIFHandler::DoCanRead( wxInputStream
& stream
)
114 wxGIFDecoder
decod(&stream
);
115 return decod
.CanRead();
118 #endif // wxUSE_STREAMS