llpngwrapper.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /*
  2.  * @file llpngwrapper.h
  3.  *
  4.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  5.  * 
  6.  * Copyright (c) 2007-2010, Linden Research, Inc.
  7.  * 
  8.  * Second Life Viewer Source Code
  9.  * The source code in this file ("Source Code") is provided by Linden Lab
  10.  * to you under the terms of the GNU General Public License, version 2.0
  11.  * ("GPL"), unless you have obtained a separate licensing agreement
  12.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  13.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  14.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  15.  * 
  16.  * There are special exceptions to the terms and conditions of the GPL as
  17.  * it is applied to this Source Code. View the full text of the exception
  18.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  19.  * online at
  20.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  21.  * 
  22.  * By copying, modifying or distributing this software, you acknowledge
  23.  * that you have read and understood your obligations described above,
  24.  * and agree to abide by those obligations.
  25.  * 
  26.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  27.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  28.  * COMPLETENESS OR PERFORMANCE.
  29.  * $/LicenseInfo$
  30.  */
  31. #ifndef LL_LLPNGWRAPPER_H
  32. #define LL_LLPNGWRAPPER_H
  33. #include "libpng12/png.h"
  34. #include "llimage.h"
  35. class LLPngWrapper
  36. {
  37. public:
  38. LLPngWrapper();
  39. virtual ~LLPngWrapper();
  40. public:
  41. struct ImageInfo
  42. {
  43. U16 mWidth;
  44. U16 mHeight;
  45. S8  mComponents;
  46. };
  47. BOOL isValidPng(U8* src);
  48. BOOL readPng(U8* src, LLImageRaw* rawImage, ImageInfo *infop = NULL);
  49. BOOL writePng(const LLImageRaw* rawImage, U8* dst);
  50. U32  getFinalSize();
  51. const std::string& getErrorMessage();
  52. protected:
  53. void normalizeImage();
  54. void updateMetaData();
  55. private:
  56. // Structure for writing/reading PNG data to/from memory
  57. // as opposed to using a file.
  58. struct PngDataInfo
  59. {
  60. U8 *mData;
  61. U32 mOffset;
  62. };
  63. static void writeFlush(png_structp png_ptr);
  64. static void errorHandler(png_structp png_ptr, png_const_charp msg);
  65. static void readDataCallback(png_structp png_ptr, png_bytep dest, png_size_t length);
  66. static void writeDataCallback(png_structp png_ptr, png_bytep src, png_size_t length);
  67. void releaseResources();
  68. png_structp mReadPngPtr;
  69. png_infop mReadInfoPtr;
  70. png_structp mWritePngPtr;
  71. png_infop mWriteInfoPtr;
  72. U8 **mRowPointers;
  73. png_uint_32 mWidth;
  74. png_uint_32 mHeight;
  75. S32 mBitDepth;
  76. S32 mColorType;
  77. S32 mChannels;
  78. S32 mInterlaceType;
  79. S32 mCompressionType;
  80. S32 mFilterMethod;
  81. U32 mFinalSize;
  82. bool mHasBKGD;
  83. png_color_16p mBackgroundColor;
  84. F64 mGamma;
  85. std::string mErrorMessage;
  86. };
  87. #endif