| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef PNGImageEncoder_h | 31 #ifndef PNGImageEncoder_h |
| 32 #define PNGImageEncoder_h | 32 #define PNGImageEncoder_h |
| 33 | 33 |
| 34 #include "platform/geometry/IntSize.h" | 34 #include "platform/geometry/IntSize.h" |
| 35 extern "C" { | 35 extern "C" { |
| 36 #include "png.h" | 36 #include "png.h" |
| 37 } | 37 } |
| 38 #include "wtf/Allocator.h" |
| 38 #include "wtf/PassOwnPtr.h" | 39 #include "wtf/PassOwnPtr.h" |
| 39 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
| 40 | 41 |
| 41 namespace blink { | 42 namespace blink { |
| 42 | 43 |
| 43 struct ImageDataBuffer; | 44 struct ImageDataBuffer; |
| 44 | 45 |
| 45 class PLATFORM_EXPORT PNGImageEncoderState { | 46 class PLATFORM_EXPORT PNGImageEncoderState final { |
| 47 USING_FAST_MALLOC(PNGImageEncoderState); |
| 48 WTF_MAKE_NONCOPYABLE(PNGImageEncoderState); |
| 46 public: | 49 public: |
| 47 static PassOwnPtr<PNGImageEncoderState> create(const IntSize& imageSize, Vec
tor<unsigned char>* output); | 50 static PassOwnPtr<PNGImageEncoderState> create(const IntSize& imageSize, Vec
tor<unsigned char>* output); |
| 48 ~PNGImageEncoderState(); | 51 ~PNGImageEncoderState(); |
| 49 png_struct* png() { ASSERT(m_png); return m_png; } | 52 png_struct* png() { ASSERT(m_png); return m_png; } |
| 50 png_info* pngInfo() { ASSERT(m_pngInfo); return m_pngInfo; } | 53 png_info* pngInfo() { ASSERT(m_pngInfo); return m_pngInfo; } |
| 51 private: | 54 private: |
| 52 PNGImageEncoderState(png_struct* png_ptr, png_info* png_info_ptr) : m_png(pn
g_ptr), m_pngInfo(png_info_ptr) {} | 55 PNGImageEncoderState(png_struct* png_ptr, png_info* png_info_ptr) : m_png(pn
g_ptr), m_pngInfo(png_info_ptr) {} |
| 53 png_struct* m_png; | 56 png_struct* m_png; |
| 54 png_info* m_pngInfo; | 57 png_info* m_pngInfo; |
| 55 }; | 58 }; |
| 56 | 59 |
| 57 | 60 |
| 58 class PLATFORM_EXPORT PNGImageEncoder { | 61 class PLATFORM_EXPORT PNGImageEncoder { |
| 62 STATIC_ONLY(PNGImageEncoder); |
| 59 public: | 63 public: |
| 60 // Encode the input data with default compression quality. See also https://
crbug.com/179289 | 64 // Encode the input data with default compression quality. See also https://
crbug.com/179289 |
| 61 static bool encode(const ImageDataBuffer&, Vector<unsigned char>* output); | 65 static bool encode(const ImageDataBuffer&, Vector<unsigned char>* output); |
| 62 | 66 |
| 63 // Functions for progressive image encoding | 67 // Functions for progressive image encoding |
| 64 static void writeOneRowToPng(unsigned char* pixels, PNGImageEncoderState*); | 68 static void writeOneRowToPng(unsigned char* pixels, PNGImageEncoderState*); |
| 65 static void finalizePng(PNGImageEncoderState*); | 69 static void finalizePng(PNGImageEncoderState*); |
| 66 }; | 70 }; |
| 67 | 71 |
| 68 } // namespace blink | 72 } // namespace blink |
| 69 | 73 |
| 70 #endif | 74 #endif |
| OLD | NEW |