wxWidgets 에 zip 과 png, jpg 추가 하기

============================================
image 추가

#include "wx/wx.h"

bool MyApp::OnInit()
{
#if wxUSE_LIBPNG
    wxImage::AddHandler(new wxPNGHandler);
#endif
#if wxUSE_LIBJPEG
    wxImage::AddHandler(new wxJPEGHandler);
#endif


============================================
zip 추가

#include "wx/fs_zip.h"

bool MyApp::OnInit()
{
    wxFileSystem::AddHandler(new wxZipFSHandler);
Posted by stekilove
,