8754de69af126fe8c2c72b785c12240a9ac27648
[platform/upstream/libSkiaSharp.git] / tools / sk_tool_utils.h
1 /*
2  * Copyright 2014 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 #ifndef sk_tool_utils_DEFINED
9 #define sk_tool_utils_DEFINED
10
11 #include "SkColor.h"
12 #include "SkImageEncoder.h"
13 #include "SkImageInfo.h"
14 #include "SkPixelSerializer.h"
15 #include "SkTypeface.h"
16
17 class SkBitmap;
18 class SkCanvas;
19 class SkPaint;
20 class SkShader;
21 class SkTestFont;
22
23 namespace sk_tool_utils {
24
25     const char* colortype_name(SkColorType);
26
27     /**
28      * Sets the paint to use a platform-independent text renderer.
29      */
30     void set_portable_typeface(SkPaint* paint, const char* name = NULL,
31                                SkTypeface::Style style = SkTypeface::kNormal);
32     SkTypeface* create_portable_typeface(const char* name, SkTypeface::Style style);
33     void report_used_chars();
34
35     /**
36      *  Call canvas->writePixels() by using the pixels from bitmap, but with an info that claims
37      *  the pixels are colorType + alphaType
38      */
39     void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
40
41     // private to sk_tool_utils
42     SkTypeface* create_font(const char* name, SkTypeface::Style );
43     SkTypeface* resource_font(const char* name, SkTypeface::Style );
44
45     /** Returns a newly created CheckerboardShader. */
46     SkShader* create_checkerboard_shader(SkColor c1, SkColor c2, int size);
47
48     /** Draw a checkerboard pattern in the current canvas, restricted to
49         the current clip, using SkXfermode::kSrc_Mode. */
50     void draw_checkerboard(SkCanvas* canvas,
51                            SkColor color1,
52                            SkColor color2,
53                            int size);
54
55     /** A default checkerboard. */
56     inline void draw_checkerboard(SkCanvas* canvas) {
57         sk_tool_utils::draw_checkerboard(canvas, 0xFF999999, 0xFF666666, 8);
58     }
59
60     // Encodes to PNG, unless there is already encoded data, in which case that gets
61     // used.
62     class PngPixelSerializer : public SkPixelSerializer {
63     public:
64         bool onUseEncodedData(const void*, size_t) SK_OVERRIDE { return true; }
65         SkData* onEncodePixels(const SkImageInfo& info, const void* pixels,
66                                size_t rowBytes) SK_OVERRIDE {
67             return SkImageEncoder::EncodeData(info, pixels, rowBytes,
68                                               SkImageEncoder::kPNG_Type, 100);
69         }
70     };
71
72 }  // namespace sk_tool_utils
73
74 #endif  // sk_tool_utils_DEFINED