This commit is huge but there are no non-white-space changes in it. Some files containing third-party sources (src/msw/wince/time.cpp, src/x11/pango*.cpp) were left unchanged. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
122 lines
3.0 KiB
C++
122 lines
3.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/imaggif.cpp
|
|
// Purpose: wxGIFHandler
|
|
// Author: Vaclav Slavik & Guillermo Rodriguez Garcia
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 1999 Vaclav Slavik & Guillermo Rodriguez Garcia
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_IMAGE && wxUSE_GIF
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/intl.h"
|
|
#include "wx/log.h"
|
|
#endif
|
|
|
|
#include "wx/imaggif.h"
|
|
#include "wx/gifdecod.h"
|
|
#include "wx/wfstream.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler,wxImageHandler)
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxGIFHandler
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#if wxUSE_STREAMS
|
|
|
|
bool wxGIFHandler::LoadFile(wxImage *image, wxInputStream& stream,
|
|
bool verbose, int index)
|
|
{
|
|
wxGIFDecoder *decod;
|
|
wxGIFErrorCode error;
|
|
bool ok = true;
|
|
|
|
// image->Destroy();
|
|
decod = new wxGIFDecoder();
|
|
error = decod->LoadGIF(stream);
|
|
|
|
if ((error != wxGIF_OK) && (error != wxGIF_TRUNCATED))
|
|
{
|
|
if (verbose)
|
|
{
|
|
switch (error)
|
|
{
|
|
case wxGIF_INVFORMAT:
|
|
wxLogError(_("GIF: error in GIF image format."));
|
|
break;
|
|
case wxGIF_MEMERR:
|
|
wxLogError(_("GIF: not enough memory."));
|
|
break;
|
|
default:
|
|
wxLogError(_("GIF: unknown error!!!"));
|
|
break;
|
|
}
|
|
}
|
|
delete decod;
|
|
return false;
|
|
}
|
|
|
|
if ((error == wxGIF_TRUNCATED) && verbose)
|
|
{
|
|
wxLogError(_("GIF: data stream seems to be truncated."));
|
|
/* go on; image data is OK */
|
|
}
|
|
|
|
if (ok)
|
|
{
|
|
ok = decod->ConvertToImage(index != -1 ? (size_t)index : 0, image);
|
|
}
|
|
else
|
|
{
|
|
wxLogError(_("GIF: Invalid gif index."));
|
|
}
|
|
|
|
delete decod;
|
|
|
|
return ok;
|
|
}
|
|
|
|
bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image),
|
|
wxOutputStream& WXUNUSED(stream), bool verbose )
|
|
{
|
|
if (verbose)
|
|
{
|
|
wxLogDebug(wxT("GIF: the handler is read-only!!"));
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool wxGIFHandler::DoCanRead( wxInputStream& stream )
|
|
{
|
|
wxGIFDecoder decod;
|
|
return decod.CanRead(stream);
|
|
// it's ok to modify the stream position here
|
|
}
|
|
|
|
int wxGIFHandler::DoGetImageCount( wxInputStream& stream )
|
|
{
|
|
wxGIFDecoder decod;
|
|
wxGIFErrorCode error = decod.LoadGIF(stream);
|
|
if ( (error != wxGIF_OK) && (error != wxGIF_TRUNCATED) )
|
|
return -1;
|
|
|
|
// NOTE: this function modifies the current stream position but it's ok
|
|
// (see wxImageHandler::GetImageCount)
|
|
|
|
return decod.GetFrameCount();
|
|
}
|
|
|
|
#endif // wxUSE_STREAMS
|
|
|
|
#endif // wxUSE_GIF
|