Add wxBitmap::NewFromPNGData() for creating bitmaps from PNG data.
This simple function can be used to create a wxBitmap from the raw image data in PNG format. It is just a thin wrapper around wxImage load functions under almost all platforms but has two advantages: 1. It can be implemented natively for some platforms (currently only OS X). 2. It can be used in a single expression as it doesn't require creating a temporary wxMemoryInputStream and this will be required by wxBITMAP_PNG() macro that will be added soon. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -83,6 +83,23 @@ protected:
|
|||||||
#define wxBITMAP_SCREEN_DEPTH (-1)
|
#define wxBITMAP_SCREEN_DEPTH (-1)
|
||||||
|
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// wxBitmapHelpers: container for various bitmap methods common to all ports.
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// Unfortunately, currently wxBitmap does not inherit from wxBitmapBase on all
|
||||||
|
// platforms and this is not easy to fix. So we extract at least some common
|
||||||
|
// methods into this class from which both wxBitmapBase (and hase wxBitmap on
|
||||||
|
// all platforms where it does inherit from it) and wxBitmap in wxMSW and other
|
||||||
|
// exceptional ports (only wxPM and old wxCocoa) inherit.
|
||||||
|
class WXDLLIMPEXP_CORE wxBitmapHelpers
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
// Create a new wxBitmap from the PNG data in the given buffer.
|
||||||
|
static wxBitmap NewFromPNGData(const void* data, size_t size);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// All ports except wxMSW and wxOS2 use wxBitmapHandler and wxBitmapBase as
|
// All ports except wxMSW and wxOS2 use wxBitmapHandler and wxBitmapBase as
|
||||||
// base class for wxBitmapHandler; wxMSW and wxOS2 use wxGDIImageHandler as
|
// base class for wxBitmapHandler; wxMSW and wxOS2 use wxGDIImageHandler as
|
||||||
// base class since it allows some code reuse there.
|
// base class since it allows some code reuse there.
|
||||||
@@ -132,12 +149,12 @@ private:
|
|||||||
DECLARE_ABSTRACT_CLASS(wxBitmapHandler)
|
DECLARE_ABSTRACT_CLASS(wxBitmapHandler)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxBitmap: class which represents platform-dependent bitmap (unlike wxImage)
|
// wxBitmap: class which represents platform-dependent bitmap (unlike wxImage)
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxBitmapBase : public wxGDIObject
|
class WXDLLIMPEXP_CORE wxBitmapBase : public wxGDIObject,
|
||||||
|
public wxBitmapHelpers
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/*
|
/*
|
||||||
|
@@ -64,7 +64,8 @@ protected:
|
|||||||
// wxBitmap
|
// wxBitmap
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxBitmap: public wxGDIObject
|
class WXDLLIMPEXP_CORE wxBitmap: public wxGDIObject,
|
||||||
|
public wxBitmapHelpers
|
||||||
{
|
{
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
// initialization
|
// initialization
|
||||||
|
@@ -43,7 +43,8 @@ enum wxBitmapTransparency
|
|||||||
// NOTE: for wxMSW we don't use the wxBitmapBase base class declared in bitmap.h!
|
// NOTE: for wxMSW we don't use the wxBitmapBase base class declared in bitmap.h!
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxBitmap : public wxGDIImage
|
class WXDLLIMPEXP_CORE wxBitmap : public wxGDIImage,
|
||||||
|
public wxBitmapHelpers
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// default ctor creates an invalid bitmap, you must Create() it later
|
// default ctor creates an invalid bitmap, you must Create() it later
|
||||||
|
@@ -63,7 +63,8 @@ public:
|
|||||||
// wxBitmap: a mono or colour bitmap
|
// wxBitmap: a mono or colour bitmap
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxBitmap : public wxGDIImage
|
class WXDLLIMPEXP_CORE wxBitmap : public wxGDIImage,
|
||||||
|
public wxBitmapHelpers
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// default ctor creates an invalid bitmap, you must Create() it later
|
// default ctor creates an invalid bitmap, you must Create() it later
|
||||||
|
@@ -584,6 +584,31 @@ public:
|
|||||||
*/
|
*/
|
||||||
virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
|
virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Loads a bitmap from the memory containing image data in PNG format.
|
||||||
|
|
||||||
|
This helper function provides the simplest way to create a wxBitmap
|
||||||
|
from PNG image data. On most platforms, it's simply a wrapper around
|
||||||
|
wxImage loading functions and so requires the PNG image handler to be
|
||||||
|
registered by either calling wxInitAllImageHandlers() which also
|
||||||
|
registers all the other image formats or including the necessary
|
||||||
|
header:
|
||||||
|
@code
|
||||||
|
#include <wx/imagpng.h>
|
||||||
|
@endcode
|
||||||
|
and calling
|
||||||
|
@code
|
||||||
|
wxImage::AddHandler(new wxPNGHandler);
|
||||||
|
@endcode
|
||||||
|
in your application startup code.
|
||||||
|
|
||||||
|
However under OS X this function uses native image loading and so
|
||||||
|
doesn't require wxWidgets PNG support.
|
||||||
|
|
||||||
|
@since 2.9.5
|
||||||
|
*/
|
||||||
|
static wxBitmap NewFromPNGData(const void* data, size_t size);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Finds the handler with the given name, and removes it.
|
Finds the handler with the given name, and removes it.
|
||||||
The handler is not deleted.
|
The handler is not deleted.
|
||||||
|
@@ -23,6 +23,12 @@
|
|||||||
#include "wx/image.h"
|
#include "wx/image.h"
|
||||||
#endif // WX_PRECOMP
|
#endif // WX_PRECOMP
|
||||||
|
|
||||||
|
#if wxUSE_IMAGE && wxUSE_LIBPNG && wxUSE_STREAMS
|
||||||
|
#define wxHAS_PNG_LOAD
|
||||||
|
|
||||||
|
#include "wx/mstream.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxVariant support
|
// wxVariant support
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
@@ -37,6 +43,31 @@ IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxIcon,WXDLLEXPORT)
|
|||||||
//WX_IMPLEMENT_ANY_VALUE_TYPE(wxAnyValueTypeImpl<wxIcon>)
|
//WX_IMPLEMENT_ANY_VALUE_TYPE(wxAnyValueTypeImpl<wxIcon>)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// wxBitmapHelpers
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// wxOSX has a native version and doesn't use this one.
|
||||||
|
|
||||||
|
#ifndef __WXOSX__
|
||||||
|
|
||||||
|
/* static */
|
||||||
|
wxBitmap wxBitmapHelpers::NewFromPNGData(const void* data, size_t size)
|
||||||
|
{
|
||||||
|
wxBitmap bitmap;
|
||||||
|
|
||||||
|
#ifdef wxHAS_PNG_LOAD
|
||||||
|
wxMemoryInputStream is(data, size);
|
||||||
|
wxImage image(is, wxBITMAP_TYPE_PNG);
|
||||||
|
if ( image.IsOk() )
|
||||||
|
bitmap = wxBitmap(image);
|
||||||
|
#endif // wxHAS_PNG_LOAD
|
||||||
|
|
||||||
|
return bitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // !__WXOSX__
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxBitmapBase
|
// wxBitmapBase
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@@ -1736,6 +1736,18 @@ bool wxBundleResourceHandler::LoadFile(wxBitmap *bitmap,
|
|||||||
return false ;
|
return false ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* static */
|
||||||
|
wxBitmap wxBitmapHelpers::NewFromPNGData(const void* data, size_t size)
|
||||||
|
{
|
||||||
|
wxCFRef<CGDataProviderRef>
|
||||||
|
provider(CGDataProviderCreateWithData(NULL, data, size, NULL) );
|
||||||
|
wxCFRef<CGImageRef>
|
||||||
|
image(CGImageCreateWithPNGDataProvider(provider, NULL, true,
|
||||||
|
kCGRenderingIntentDefault));
|
||||||
|
|
||||||
|
return wxBitmap(image);
|
||||||
|
}
|
||||||
|
|
||||||
void wxBitmap::InitStandardHandlers()
|
void wxBitmap::InitStandardHandlers()
|
||||||
{
|
{
|
||||||
#if wxOSX_USE_COCOA_OR_CARBON
|
#if wxOSX_USE_COCOA_OR_CARBON
|
||||||
|
Reference in New Issue
Block a user