2 * Copyright 2013 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
8 #include "SkImageEncoder.h"
10 #include "SkColorPriv.h"
12 #include "SkTemplates.h"
14 class SkARGBImageEncoder : public SkImageEncoder {
16 bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) SK_OVERRIDE;
19 typedef SkImageEncoder INHERITED;
22 typedef void (*ScanlineImporter)(const uint8_t* in, uint8_t* argb, int width,
23 const SkPMColor* SK_RESTRICT ctable);
25 static void ARGB_8888_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) {
26 const uint32_t* SK_RESTRICT src = (const uint32_t*)in;
27 for (int i = 0; i < width; ++i) {
28 const uint32_t c = *src++;
29 argb[0] = SkGetPackedA32(c);
30 argb[1] = SkGetPackedR32(c);
31 argb[2] = SkGetPackedG32(c);
32 argb[3] = SkGetPackedB32(c);
37 static void RGB_565_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) {
38 const uint16_t* SK_RESTRICT src = (const uint16_t*)in;
39 for (int i = 0; i < width; ++i) {
40 const uint16_t c = *src++;
42 argb[1] = SkPacked16ToR32(c);
43 argb[2] = SkPacked16ToG32(c);
44 argb[3] = SkPacked16ToB32(c);
49 static void ARGB_4444_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) {
50 const SkPMColor16* SK_RESTRICT src = (const SkPMColor16*)in;
51 for (int i = 0; i < width; ++i) {
52 const SkPMColor16 c = *src++;
53 argb[0] = SkPacked4444ToA32(c);
54 argb[1] = SkPacked4444ToR32(c);
55 argb[2] = SkPacked4444ToG32(c);
56 argb[3] = SkPacked4444ToB32(c);
61 static void Index8_To_ARGB(const uint8_t* in, uint8_t* argb, int width,
62 const SkPMColor* SK_RESTRICT ctable) {
63 const uint8_t* SK_RESTRICT src = (const uint8_t*)in;
64 for (int i = 0; i < width; ++i) {
65 const uint32_t c = ctable[*src++];
66 argb[0] = SkGetPackedA32(c);
67 argb[1] = SkGetPackedR32(c);
68 argb[2] = SkGetPackedG32(c);
69 argb[3] = SkGetPackedB32(c);
74 static ScanlineImporter ChooseImporter(SkColorType ct) {
76 case kN32_SkColorType:
77 return ARGB_8888_To_ARGB;
78 case kRGB_565_SkColorType:
79 return RGB_565_To_ARGB;
80 case kARGB_4444_SkColorType:
81 return ARGB_4444_To_ARGB;
82 case kIndex_8_SkColorType:
83 return Index8_To_ARGB;
89 bool SkARGBImageEncoder::onEncode(SkWStream* stream, const SkBitmap& bitmap, int) {
90 const ScanlineImporter scanline_import = ChooseImporter(bitmap.colorType());
91 if (NULL == scanline_import) {
95 SkAutoLockPixels alp(bitmap);
96 const uint8_t* src = (uint8_t*)bitmap.getPixels();
97 if (NULL == bitmap.getPixels()) {
101 const SkPMColor* colors = bitmap.getColorTable() ? bitmap.getColorTable()->readColors() : NULL;
103 const int argbStride = bitmap.width() * 4;
104 SkAutoTDeleteArray<uint8_t> ada(new uint8_t[argbStride]);
105 uint8_t* argb = ada.get();
106 for (int y = 0; y < bitmap.height(); ++y) {
107 scanline_import(src + y * bitmap.rowBytes(), argb, bitmap.width(), colors);
108 stream->write(argb, argbStride);
115 ///////////////////////////////////////////////////////////////////////////////
116 DEFINE_ENCODER_CREATOR(ARGBImageEncoder);
117 ///////////////////////////////////////////////////////////////////////////////