X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fpng%2Fpngloader.cpp;h=1dfa77362d2111d88153003f30155a8ff56edd59;hb=43d31e73c4b97a37017757232c4ef1db355fee3a;hp=c2691bd5c30522a51843bc7774d4ab8453c6db1e;hpb=69aaca13ae0949acf12056e390cbd1009a8487b2;p=libs%2Fgui.git diff --git a/source/graphics/png/pngloader.cpp b/source/graphics/png/pngloader.cpp index c2691bd..1dfa773 100644 --- a/source/graphics/png/pngloader.cpp +++ b/source/graphics/png/pngloader.cpp @@ -29,6 +29,7 @@ struct PngLoader::Private std::string message; png_struct *png; png_info *info; + int interlace; }; @@ -54,13 +55,10 @@ bool PngLoader::detect(const std::string &sig) return !png_sig_cmp(reinterpret_cast(const_cast(sig.data())), 0, sig.size()); } -void PngLoader::load(Image::Data &data) +void PngLoader::load_headers_(Image::Data &data) { - png_byte **rows = 0; - if(setjmp(png_jmpbuf(priv->png))) { - delete[] rows; throw bad_image_data(priv->message); } @@ -69,8 +67,7 @@ void PngLoader::load(Image::Data &data) png_uint_32 height; int depth; int color; - int interlace; - png_get_IHDR(priv->png, priv->info, &width, &height, &depth, &color, &interlace, 0, 0); + png_get_IHDR(priv->png, priv->info, &width, &height, &depth, &color, &priv->interlace, 0, 0); unsigned nchans = png_get_channels(priv->png, priv->info); if(depth!=8) @@ -89,16 +86,25 @@ void PngLoader::load(Image::Data &data) case PNG_COLOR_TYPE_RGB_ALPHA: data.fmt = RGBA; break; default: throw unsupported_image_format("unknown color type"); } +} + +void PngLoader::load_pixels_(Image::Data &data) +{ + png_byte **rows = 0; - data.data = new char[data.stride*data.height]; + if(setjmp(png_jmpbuf(priv->png))) + { + delete[] rows; + throw bad_image_data(priv->message); + } - if(interlace==PNG_INTERLACE_ADAM7) + if(priv->interlace==PNG_INTERLACE_ADAM7) { // ADAM7 requires all rows to be loaded at once unsigned n_passes = png_set_interlace_handling(priv->png); rows = new png_byte *[data.height]; for(unsigned y=0; y(data.data+data.stride*(data.height-1-y)); + rows[y] = reinterpret_cast(data.pixels+data.stride*(data.height-1-y)); for(unsigned i=0; ipng, rows, 0, data.height); @@ -109,7 +115,7 @@ void PngLoader::load(Image::Data &data) else { for(unsigned y=0; ypng, reinterpret_cast(data.data+data.stride*(data.height-1-y)), 0); + png_read_row(priv->png, reinterpret_cast(data.pixels+data.stride*(data.height-1-y)), 0); } png_read_end(priv->png, 0);