aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/DecodeFile.h
blob: 26d5d2dc2631407b524ced92c462c189e6a4c4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkBitmap.h"
#include "SkCodec.h"
#include "SkData.h"

inline bool decode_file(const char* filename, SkBitmap* bitmap,
        SkColorType colorType = kN32_SkColorType, bool requireUnpremul = false) {
    SkASSERT(kIndex_8_SkColorType != colorType);
    SkAutoTUnref<SkData> data(SkData::NewFromFileName(filename));
    SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(data));
    if (!codec) {
        return false;
    }

    SkImageInfo info = codec->getInfo().makeColorType(colorType);
    if (requireUnpremul && kPremul_SkAlphaType == info.alphaType()) {
        info = info.makeAlphaType(kUnpremul_SkAlphaType);
    }

    if (!bitmap->tryAllocPixels(info)) {
        return false;
    }

    return SkCodec::kSuccess == codec->getPixels(info, bitmap->getPixels(), bitmap->rowBytes());
}