2001-01-22 22:01:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-01-22 22:01:03 +00:00
|
|
|
|
|
|
|
#ifndef nsPNGDecoder_h__
|
|
|
|
#define nsPNGDecoder_h__
|
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
#include "Decoder.h"
|
2001-01-22 22:01:03 +00:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
#include "gfxASurface.h"
|
2001-01-26 12:05:55 +00:00
|
|
|
|
2001-01-22 22:01:03 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
#include "png.h"
|
|
|
|
|
2009-04-07 16:02:11 +00:00
|
|
|
#include "qcms.h"
|
2007-07-23 22:02:17 +00:00
|
|
|
|
2010-08-14 04:09:49 +00:00
|
|
|
namespace mozilla {
|
2012-01-06 16:02:27 +00:00
|
|
|
namespace image {
|
2010-08-14 04:09:49 +00:00
|
|
|
class RasterImage;
|
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
class nsPNGDecoder : public Decoder
|
2001-01-22 22:01:03 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-01-18 21:47:18 +00:00
|
|
|
nsPNGDecoder(RasterImage &aImage);
|
2001-01-22 22:01:03 +00:00
|
|
|
virtual ~nsPNGDecoder();
|
|
|
|
|
2010-09-12 15:22:30 +00:00
|
|
|
virtual void InitInternal();
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual void WriteInternal(const char* aBuffer, uint32_t aCount);
|
2011-09-22 20:25:56 +00:00
|
|
|
virtual Telemetry::ID SpeedHistogram();
|
2010-08-23 02:30:46 +00:00
|
|
|
|
2009-12-04 02:41:00 +00:00
|
|
|
void CreateFrame(png_uint_32 x_offset, png_uint_32 y_offset,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t width, int32_t height,
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
gfxASurface::gfxImageFormat format);
|
2008-02-13 10:53:17 +00:00
|
|
|
void EndImageFrame();
|
|
|
|
|
2011-11-05 10:48:26 +00:00
|
|
|
// Check if PNG is valid ICO (32bpp RGBA)
|
|
|
|
// http://blogs.msdn.com/b/oldnewthing/archive/2010/10/22/10079192.aspx
|
|
|
|
bool IsValidICO() const
|
2011-08-25 20:09:01 +00:00
|
|
|
{
|
2012-07-16 23:10:18 +00:00
|
|
|
// If there are errors in the call to png_get_IHDR, the error_callback in
|
|
|
|
// nsPNGDecoder.cpp is called. In this error callback we do a longjmp, so
|
|
|
|
// we need to save the jump buffer here. Oterwise we'll end up without a
|
|
|
|
// proper callstack.
|
|
|
|
if (setjmp(png_jmpbuf(mPNG))) {
|
|
|
|
// We got here from a longjmp call indirectly from png_get_IHDR
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-05 10:48:26 +00:00
|
|
|
png_uint_32
|
|
|
|
png_width, // Unused
|
|
|
|
png_height; // Unused
|
2011-08-25 20:09:01 +00:00
|
|
|
|
2011-11-05 10:48:26 +00:00
|
|
|
int png_bit_depth,
|
|
|
|
png_color_type;
|
|
|
|
|
|
|
|
if (png_get_IHDR(mPNG, mInfo, &png_width, &png_height, &png_bit_depth,
|
|
|
|
&png_color_type, NULL, NULL, NULL)) {
|
|
|
|
|
2013-01-28 17:27:35 +00:00
|
|
|
return ((png_color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
|
|
|
|
png_color_type == PNG_COLOR_TYPE_RGB) &&
|
2011-11-05 10:48:26 +00:00
|
|
|
png_bit_depth == 8);
|
|
|
|
} else {
|
|
|
|
return false;
|
2011-08-25 20:09:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-20 22:43:56 +00:00
|
|
|
public:
|
2001-01-22 22:01:03 +00:00
|
|
|
png_structp mPNG;
|
|
|
|
png_infop mInfo;
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
nsIntRect mFrameRect;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t *mCMSLine;
|
|
|
|
uint8_t *interlacebuf;
|
2009-04-07 16:02:11 +00:00
|
|
|
qcms_profile *mInProfile;
|
|
|
|
qcms_transform *mTransform;
|
2007-07-23 22:02:17 +00:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
gfxASurface::gfxImageFormat format;
|
2009-09-12 22:44:18 +00:00
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
// For size decodes
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t *mHeaderBuf;
|
|
|
|
uint32_t mHeaderBytesRead;
|
2009-09-12 22:44:18 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mChannels;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFrameHasNoAlpha;
|
|
|
|
bool mFrameIsHidden;
|
2010-08-23 02:30:46 +00:00
|
|
|
|
2011-01-13 01:45:13 +00:00
|
|
|
// whether CMS or premultiplied alpha are forced off
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mCMSMode;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mDisablePremultipliedAlpha;
|
2013-02-27 19:23:08 +00:00
|
|
|
|
2013-04-22 14:57:17 +00:00
|
|
|
struct AnimFrameInfo
|
|
|
|
{
|
|
|
|
AnimFrameInfo();
|
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
|
|
|
AnimFrameInfo(png_structp aPNG, png_infop aInfo);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
RasterImage::FrameDisposalMethod mDispose;
|
|
|
|
RasterImage::FrameBlendMethod mBlend;
|
|
|
|
int32_t mTimeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
AnimFrameInfo mAnimInfo;
|
|
|
|
|
2013-02-27 19:23:08 +00:00
|
|
|
// The number of frames we've finished.
|
|
|
|
uint32_t mNumFrames;
|
2011-01-13 01:45:13 +00:00
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
/*
|
|
|
|
* libpng callbacks
|
|
|
|
*
|
|
|
|
* We put these in the class so that they can access protected members.
|
|
|
|
*/
|
|
|
|
static void PNGAPI info_callback(png_structp png_ptr, png_infop info_ptr);
|
|
|
|
static void PNGAPI row_callback(png_structp png_ptr, png_bytep new_row,
|
|
|
|
png_uint_32 row_num, int pass);
|
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
|
|
|
static void PNGAPI frame_info_callback(png_structp png_ptr,
|
|
|
|
png_uint_32 frame_num);
|
|
|
|
#endif
|
|
|
|
static void PNGAPI end_callback(png_structp png_ptr, png_infop info_ptr);
|
|
|
|
static void PNGAPI error_callback(png_structp png_ptr,
|
|
|
|
png_const_charp error_msg);
|
|
|
|
static void PNGAPI warning_callback(png_structp png_ptr,
|
|
|
|
png_const_charp warning_msg);
|
2011-08-25 20:09:01 +00:00
|
|
|
|
|
|
|
// This is defined in the PNG spec as an invariant. We use it to
|
|
|
|
// do manual validation without libpng.
|
2012-08-22 15:56:38 +00:00
|
|
|
static const uint8_t pngSignatureBytes[];
|
2001-01-22 22:01:03 +00:00
|
|
|
};
|
|
|
|
|
2012-01-06 16:02:27 +00:00
|
|
|
} // namespace image
|
2010-08-23 02:30:46 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2001-01-22 22:01:03 +00:00
|
|
|
#endif // nsPNGDecoder_h__
|