blob: 4e42731b0117a1a433ef986fd23869880c3402a0 [file] [log] [blame]
msarett7f7ec202016-03-01 12:12:27 -08001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkBitmap.h"
9#include "SkCodec.h"
10#include "SkData.h"
11
12inline bool decode_memory(const void* mem, size_t size, SkBitmap* bm) {
bungeman38d909e2016-08-02 14:40:46 -070013 sk_sp<SkData> data(SkData::MakeWithoutCopy(mem, size));
msarett7f7ec202016-03-01 12:12:27 -080014
15 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(data.get()));
16 if (!codec) {
17 return false;
18 }
19
20 // Construct a color table for the decode if necessary
21 SkAutoTUnref<SkColorTable> colorTable(nullptr);
22 SkPMColor* colorPtr = nullptr;
23 int* colorCountPtr = nullptr;
24 int maxColors = 256;
25 if (kIndex_8_SkColorType == codec->getInfo().colorType()) {
26 SkPMColor colors[256];
27 colorTable.reset(new SkColorTable(colors, maxColors));
28 colorPtr = const_cast<SkPMColor*>(colorTable->readColors());
29 colorCountPtr = &maxColors;
30 }
31
32 bm->allocPixels(codec->getInfo(), nullptr, colorTable.get());
33 const SkCodec::Result result = codec->getPixels(codec->getInfo(), bm->getPixels(),
34 bm->rowBytes(), nullptr, colorPtr, colorCountPtr);
35 return result == SkCodec::kSuccess || result == SkCodec::kIncompleteInput;
36}