1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage PNG handler
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "imagpng.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
25 #if wxUSE_IMAGE && wxUSE_LIBPNG
27 #include "wx/imagpng.h"
28 #include "wx/bitmap.h"
33 #include "wx/filefn.h"
34 #include "wx/wfstream.h"
36 #include "wx/module.h"
51 //-----------------------------------------------------------------------------
53 //-----------------------------------------------------------------------------
55 IMPLEMENT_DYNAMIC_CLASS(wxPNGHandler
,wxImageHandler
)
59 #ifndef PNGLINKAGEMODE
60 #define PNGLINKAGEMODE LINKAGEMODE
63 static void PNGLINKAGEMODE
_PNG_stream_reader( png_structp png_ptr
, png_bytep data
, png_size_t length
)
65 ((wxInputStream
*) png_get_io_ptr( png_ptr
)) -> Read(data
, length
);
68 static void PNGLINKAGEMODE
_PNG_stream_writer( png_structp png_ptr
, png_bytep data
, png_size_t length
)
70 ((wxOutputStream
*) png_get_io_ptr( png_ptr
)) -> Write(data
, length
);
74 // so that the libpng doesn't send anything on stderr
76 PNGLINKAGEMODE
png_silent_error(png_structp png_ptr
, png_const_charp
WXUNUSED(message
))
78 #ifdef USE_FAR_KEYWORD
81 png_memcpy(jmpbuf
,png_ptr
->jmpbuf
,sizeof(jmp_buf));
85 longjmp(png_ptr
->jmpbuf
, 1);
90 PNGLINKAGEMODE
png_silent_warning(png_structp
WXUNUSED(png_ptr
), png_const_charp
WXUNUSED(message
))
94 // temporarily disable the warning C4611 (interaction between '_setjmp' and
95 // C++ object destruction is non-portable) - I don't see any dtors here
97 #pragma warning(disable:4611)
100 bool wxPNGHandler::LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
, int WXUNUSED(index
) )
102 // VZ: as this function uses setjmp() the only fool proof error handling
103 // method is to use goto (setjmp is not really C++ dtors friendly...)
105 unsigned char **lines
;
107 png_infop info_ptr
= (png_infop
) NULL
;
111 png_structp png_ptr
= png_create_read_struct( PNG_LIBPNG_VER_STRING
,
113 (png_error_ptr
) NULL
,
114 (png_error_ptr
) NULL
);
118 // the file example.c explain how to guess if the stream is a png image
119 if (!verbose
) png_set_error_fn(png_ptr
, (png_voidp
)NULL
, png_silent_error
, png_silent_warning
);
121 info_ptr
= png_create_info_struct( png_ptr
);
125 if (setjmp(png_ptr
->jmpbuf
))
128 if (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
131 png_set_read_fn( png_ptr
, &stream
, _PNG_stream_reader
);
133 png_uint_32 width
,height
;
134 int bit_depth
,color_type
,interlace_type
;
136 png_read_info( png_ptr
, info_ptr
);
137 png_get_IHDR( png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
, &interlace_type
, (int*) NULL
, (int*) NULL
);
139 if (color_type
== PNG_COLOR_TYPE_PALETTE
)
140 png_set_expand( png_ptr
);
142 png_set_strip_16( png_ptr
);
143 png_set_packing( png_ptr
);
144 if (png_get_valid( png_ptr
, info_ptr
, PNG_INFO_tRNS
))
145 png_set_expand( png_ptr
);
146 png_set_filler( png_ptr
, 0xff, PNG_FILLER_AFTER
);
148 image
->Create( (int)width
, (int)height
);
153 lines
= (unsigned char **)malloc( (size_t)(height
* sizeof(unsigned char *)) );
157 for (i
= 0; i
< height
; i
++)
159 if ((lines
[i
] = (unsigned char *)malloc( (size_t)(width
* (sizeof(unsigned char) * 4)))) == NULL
)
161 for ( unsigned int n
= 0; n
< i
; n
++ )
167 // loaded successfully!
170 png_read_image( png_ptr
, lines
);
171 png_read_end( png_ptr
, info_ptr
);
172 png_destroy_read_struct( &png_ptr
, &info_ptr
, (png_infopp
) NULL
);
173 unsigned char *ptr
= image
->GetData();
174 if ((color_type
== PNG_COLOR_TYPE_GRAY
) ||
175 (color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
))
177 for (unsigned int y
= 0; y
< height
; y
++)
179 unsigned char *ptr2
= lines
[y
];
180 for (unsigned int x
= 0; x
< width
; x
++)
182 unsigned char r
= *ptr2
++;
183 unsigned char a
= *ptr2
++;
202 for (unsigned int y
= 0; y
< height
; y
++)
204 unsigned char *ptr2
= lines
[y
];
205 for (unsigned int x
= 0; x
< width
; x
++)
207 unsigned char r
= *ptr2
++;
208 unsigned char g
= *ptr2
++;
209 unsigned char b
= *ptr2
++;
210 unsigned char a
= *ptr2
++;
220 if ((r
== 255) && (g
== 0) && (b
== 255)) r
= 254;
229 for ( unsigned int j
= 0; j
< height
; j
++ )
235 image
->SetMaskColour( 255, 0, 255 );
239 image
->SetMask( FALSE
);
246 lines
= NULL
; // called from before it was set
249 wxLogError(_("Couldn't load a PNG image - file is corrupted or not enough memory."));
265 png_destroy_read_struct( &png_ptr
, &info_ptr
, (png_infopp
) NULL
);
269 png_destroy_read_struct( &png_ptr
, (png_infopp
) NULL
, (png_infopp
) NULL
);
274 bool wxPNGHandler::SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
)
277 png_structp png_ptr
= png_create_write_struct( PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
);
283 if (!verbose
) png_set_error_fn(png_ptr
, (png_voidp
)NULL
, png_silent_error
, png_silent_warning
);
285 png_infop info_ptr
= png_create_info_struct(png_ptr
);
286 if (info_ptr
== NULL
)
288 png_destroy_write_struct( &png_ptr
, (png_infopp
)NULL
);
292 if (setjmp(png_ptr
->jmpbuf
))
294 png_destroy_write_struct( &png_ptr
, (png_infopp
)NULL
);
298 png_set_write_fn( png_ptr
, &stream
, _PNG_stream_writer
, NULL
);
300 png_set_IHDR( png_ptr
, info_ptr
, image
->GetWidth(), image
->GetHeight(), 8,
301 PNG_COLOR_TYPE_RGB_ALPHA
, PNG_INTERLACE_NONE
,
302 PNG_COMPRESSION_TYPE_BASE
, PNG_FILTER_TYPE_BASE
);
309 png_set_sBIT( png_ptr
, info_ptr
, &sig_bit
);
310 png_write_info( png_ptr
, info_ptr
);
311 png_set_shift( png_ptr
, &sig_bit
);
312 png_set_packing( png_ptr
);
314 unsigned char *data
= (unsigned char *)malloc( image
->GetWidth()*4 );
317 png_destroy_write_struct( &png_ptr
, (png_infopp
)NULL
);
321 for (int y
= 0; y
< image
->GetHeight(); y
++)
323 unsigned char *ptr
= image
->GetData() + (y
* image
->GetWidth() * 3);
324 for (int x
= 0; x
< image
->GetWidth(); x
++)
326 data
[(x
<< 2) + 0] = *ptr
++;
327 data
[(x
<< 2) + 1] = *ptr
++;
328 data
[(x
<< 2) + 2] = *ptr
++;
329 if (( !image
->HasMask() ) || \
330 (data
[(x
<< 2) + 0] != image
->GetMaskRed()) || \
331 (data
[(x
<< 2) + 1] != image
->GetMaskGreen()) || \
332 (data
[(x
<< 2) + 2] != image
->GetMaskBlue()))
334 data
[(x
<< 2) + 3] = 255;
338 data
[(x
<< 2) + 3] = 0;
341 png_bytep row_ptr
= data
;
342 png_write_rows( png_ptr
, &row_ptr
, 1 );
346 png_write_end( png_ptr
, info_ptr
);
347 png_destroy_write_struct( &png_ptr
, (png_infopp
)&info_ptr
);
353 #pragma warning(default:4611)
356 bool wxPNGHandler::DoCanRead( wxInputStream
& stream
)
358 unsigned char hdr
[4];
361 stream
.SeekI(-4, wxFromCurrent
);
362 return (hdr
[0] == 0x89 && hdr
[1] == 'P' && hdr
[2] == 'N' && hdr
[3] == 'G');
365 #endif // wxUSE_STREAMS
367 #endif // wxUSE_LIBPNG