12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _PNGIMAGE_H_
- #define _PNGIMAGE_H_
- #ifndef _CONSOLEINTERNAL_H_
- #include "console/consoleInternal.h"
- #endif
- #include <png.h>
- #include "platform/types.h"
- #include "console/console.h"
- #include "console/consoleTypes.h"
- enum PNGImageType { PNGTYPE_UNKNOWN = 0, PNGTYPE_RGB, PNGTYPE_RGBA };
- class PNGImage : public SimObject
- {
- typedef SimObject Parent;
- protected:
- U32 mWidth, mHeight;
- png_byte mColorType;
- png_byte mBitDepth;
- png_structp mPng;
- png_infop mInfo;
- png_bytep* mRowPointers;
- PNGImageType mPNGImageType;
- char mReadFilePath[256];
- bool mRead;
- bool mWrite;
- public:
- PNGImage();
- ~PNGImage();
- DECLARE_CONOBJECT(PNGImage);
- /// Construct the png information from the .png file path provided.
- bool Read(const char* filePath);
- bool Create(U32 width, U32 height, PNGImageType imageType);
- /// Write the .png file read from Read and save it to the file path provided.
- bool Write(const char* filePath);
- // Will "merge" the incoming image onto the current image on to an x, y position.
- bool MergeOn(U32 x, U32 y, const PNGImage* inc);
- // Will clean up any allocated memory from the PNGImage. This must be called or there may be a memory leak.
- bool CleanMemoryUsage();
- bool ClearImageData();
- U32 GetWidth() const { return mWidth; }
- U32 GetHeight() const { return mHeight; }
- const png_bytep* GetRowPointers() const { return mRowPointers; }
- const png_structp GetPng() const { return mPng; }
- const png_infop GetInfo() const { return mInfo; }
- const char* GetReadFilePath() { return mReadFilePath; }
- PNGImageType GetPNGImageType() const { return mPNGImageType; }
- };
- #endif
|