OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2010, Google Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions are | |
6 * met: | |
7 * | |
8 * * Redistributions of source code must retain the above copyright | |
9 * notice, this list of conditions and the following disclaimer. | |
10 * * Redistributions in binary form must reproduce the above | |
11 * copyright notice, this list of conditions and the following disclaimer | |
12 * in the documentation and/or other materials provided with the | |
13 * distribution. | |
14 * * Neither the name of Google Inc. nor the names of its | |
15 * contributors may be used to endorse or promote products derived from | |
16 * this software without specific prior written permission. | |
17 * | |
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
29 */ | |
30 | |
31 #include "platform/image-encoders/skia/PNGImageEncoder.h" | |
32 | |
33 #include "platform/graphics/ImageBuffer.h" | |
34 #include "wtf/OwnPtr.h" | |
35 | |
36 namespace blink { | |
37 | |
38 PNGImageEncoderState::~PNGImageEncoderState() | |
39 { | |
40 png_destroy_write_struct(&m_png, &m_info); | |
41 } | |
42 | |
43 static void writeOutput(png_structp png, png_bytep data, png_size_t size) | |
44 { | |
45 static_cast<Vector<unsigned char>*>(png_get_io_ptr(png))->append(data, size)
; | |
46 } | |
47 | |
48 PassOwnPtr<PNGImageEncoderState> PNGImageEncoderState::create(const IntSize& ima
geSize, Vector<unsigned char>* output) | |
49 { | |
50 if (imageSize.width() <= 0 || imageSize.height() <= 0) | |
51 return nullptr; | |
52 | |
53 png_struct* png = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0); | |
54 png_info* info = png_create_info_struct(png); | |
55 if (!png || !info || setjmp(png_jmpbuf(png))) { | |
56 png_destroy_write_struct(png ? &png : 0, info ? &info : 0); | |
57 return nullptr; | |
58 } | |
59 | |
60 // Optimize compression for speed. | |
61 // The parameters are the same as what libpng uses by default for RGB and RG
BA images, except: | |
62 // - the zlib compression level is 3 instead of 6, to avoid the lazy Ziv-Lem
pel match searching; | |
63 // - the delta filter is 1 ("sub") instead of 5 ("all"), to reduce the filte
r computations. | |
64 // The zlib memory level (8) and strategy (Z_FILTERED) will be set inside li
bpng. | |
65 // | |
66 // Avoid the zlib strategies Z_HUFFMAN_ONLY or Z_RLE. | |
67 // Although they are the fastest for poorly-compressible images (e.g. photog
raphs), | |
68 // they are very slow for highly-compressible images (e.g. text, drawings or
business graphics) | |
69 png_set_compression_level(png, 3); | |
70 png_set_filter(png, PNG_FILTER_TYPE_BASE, PNG_FILTER_SUB); | |
71 | |
72 png_set_write_fn(png, output, writeOutput, 0); | |
73 png_set_IHDR(png, info, imageSize.width(), imageSize.height(), | |
74 8, PNG_COLOR_TYPE_RGB_ALPHA, 0, 0, 0); | |
75 png_write_info(png, info); | |
76 | |
77 return adoptPtr(new PNGImageEncoderState(png, info)); | |
78 } | |
79 | |
80 void PNGImageEncoder::writeOneRowToPng(unsigned char* pixels, PNGImageEncoderSta
te* encoderState) | |
81 { | |
82 png_write_row(encoderState->png(), pixels); | |
83 } | |
84 | |
85 void PNGImageEncoder::finalizePng(PNGImageEncoderState* encoderState) | |
86 { | |
87 png_write_end(encoderState->png(), encoderState->info()); | |
88 } | |
89 | |
90 static bool encodePixels(const IntSize& imageSize, const unsigned char* inputPix
els, Vector<unsigned char>* output) | |
91 { | |
92 OwnPtr<PNGImageEncoderState> encoderState = PNGImageEncoderState::create(ima
geSize, output); | |
93 if (!encoderState.get()) | |
94 return false; | |
95 | |
96 unsigned char* pixels = const_cast<unsigned char*>(inputPixels); | |
97 const size_t pixelRowStride = imageSize.width() * 4; | |
98 for (int y = 0; y < imageSize.height(); ++y) { | |
99 PNGImageEncoder::writeOneRowToPng(pixels, encoderState.get()); | |
100 pixels += pixelRowStride; | |
101 } | |
102 | |
103 PNGImageEncoder::finalizePng(encoderState.get()); | |
104 return true; | |
105 } | |
106 | |
107 bool PNGImageEncoder::encode(const ImageDataBuffer& imageData, Vector<unsigned c
har>* output) | |
108 { | |
109 if (!imageData.pixels()) | |
110 return false; | |
111 | |
112 return encodePixels(imageData.size(), imageData.pixels(), output); | |
113 } | |
114 | |
115 } // namespace blink | |
OLD | NEW |