aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/codec/SkScaledCodec.h
blob: 20428d8d73f40b0a391dfa061131fe1358fbb27c (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#ifndef SkScaledCodec_DEFINED
#define SkScaledCodec_DEFINED

#include "SkCodec.h"

class SkStream;

/**
 * This class implements scaling, by sampling scanlines in the y direction.
 * x-wise sampling is implemented in the swizzler, when getScanlines() is called.
 */
class SkScaledCodec : public SkCodec {
public:
    static SkCodec* NewFromStream(SkStream*);
    static SkCodec* NewFromData(SkData*);

    virtual ~SkScaledCodec();

    /**
     * returns whether a destination's dimensions are supported for down sampling
     */
    static bool DimensionsSupportedForSampling(const SkImageInfo& srcInfo, 
                                               const SkImageInfo& dstInfo) {
        // heights must be equal as no native y sampling is supported
        if (dstInfo.height() != srcInfo.height()) {
            return false;
        }
        // only support down sampling, dstWidth cannot be larger that srcWidth
        if(dstInfo.width() > srcInfo.width()) {
            return false;
        }
        return true;   
    }

    static void ComputeSampleSize(const SkImageInfo& dstInfo, const SkImageInfo& srcInfo,
                                  int* sampleSizeX, int* sampleSizeY);

protected:
    /**
     * Recommend a set of destination dimensions given a requested scale
     */
    SkISize onGetScaledDimensions(float desiredScale) const override;

    Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, SkPMColor*, int*)
            override;
    SkEncodedFormat onGetEncodedFormat() const override {
        return fCodec->getEncodedFormat();
    }

    bool onReallyHasAlpha() const override {
        return fCodec->reallyHasAlpha();
    }

private:

    SkAutoTDelete<SkCodec> fCodec;

    explicit SkScaledCodec(SkCodec*);

    typedef SkCodec INHERITED;
};
#endif // SkScaledCodec_DEFINED