1 /*
2 * Copyright 2011 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 "gm/gm.h"
9 #include "include/core/SkBitmap.h"
10 #include "include/core/SkCanvas.h"
11 #include "include/core/SkColor.h"
12 #include "include/core/SkFont.h"
13 #include "include/core/SkFontTypes.h"
14 #include "include/core/SkImageInfo.h"
15 #include "include/core/SkPaint.h"
16 #include "include/core/SkRect.h"
17 #include "include/core/SkScalar.h"
18 #include "include/core/SkSize.h"
19 #include "include/core/SkString.h"
20 #include "include/core/SkTypeface.h"
21 #include "include/core/SkTypes.h"
22 #include "tools/ToolUtils.h"
23
24 #include <string.h>
25
26 namespace {
27
color_type_name(SkColorType colorType)28 static const char* color_type_name(SkColorType colorType) {
29 switch (colorType) {
30 case kUnknown_SkColorType: return "unknown";
31 case kAlpha_8_SkColorType: return "A8";
32 case kRGB_565_SkColorType: return "565";
33 case kARGB_4444_SkColorType: return "4444";
34 case kRGBA_8888_SkColorType: return "8888";
35 case kRGB_888x_SkColorType: return "888x";
36 case kBGRA_8888_SkColorType: return "8888";
37 case kRGBA_1010102_SkColorType: return "1010102";
38 case kRGB_101010x_SkColorType: return "101010x";
39 case kGray_8_SkColorType: return "G8";
40 case kRGBA_F16Norm_SkColorType: return "F16Norm";
41 case kRGBA_F16_SkColorType: return "F16";
42 case kRGBA_F32_SkColorType: return "F32";
43 }
44 return "";
45 }
46
47 constexpr SkColorType gColorTypes[] = {
48 kRGB_565_SkColorType,
49 kARGB_4444_SkColorType,
50 kN32_SkColorType,
51 };
52
53 #define NUM_CONFIGS SK_ARRAY_COUNT(gColorTypes)
54
draw_checks(SkCanvas * canvas,int width,int height)55 static void draw_checks(SkCanvas* canvas, int width, int height) {
56 SkPaint paint;
57 paint.setColor(SK_ColorRED);
58 canvas->drawRect(SkRect::MakeIWH(width/2, height/2), paint);
59 paint.setColor(SK_ColorGREEN);
60 canvas->drawRect({ SkIntToScalar(width/2), 0, SkIntToScalar(width), SkIntToScalar(height/2) },
61 paint);
62 paint.setColor(SK_ColorBLUE);
63 canvas->drawRect({ 0, SkIntToScalar(height/2), SkIntToScalar(width/2), SkIntToScalar(height) },
64 paint);
65 paint.setColor(SK_ColorYELLOW);
66 canvas->drawRect({ SkIntToScalar(width/2), SkIntToScalar(height/2), SkIntToScalar(width),
67 SkIntToScalar(height) }, paint);
68 }
69
70 class BitmapCopyGM : public skiagm::GM {
71 SkBitmap fDst[NUM_CONFIGS];
72
onOnceBeforeDraw()73 void onOnceBeforeDraw() override { this->setBGColor(0xFFDDDDDD); }
74
onShortName()75 SkString onShortName() override { return SkString("bitmapcopy"); }
76
onISize()77 SkISize onISize() override { return {540, 330}; }
78
onDraw(SkCanvas * canvas)79 void onDraw(SkCanvas* canvas) override {
80 SkPaint paint;
81 SkScalar horizMargin = 10;
82 SkScalar vertMargin = 10;
83
84 SkBitmap src;
85 src.allocN32Pixels(40, 40, kOpaque_SkAlphaType);
86 SkCanvas canvasTmp(src);
87
88 draw_checks(&canvasTmp, 40, 40);
89
90 for (unsigned i = 0; i < NUM_CONFIGS; ++i) {
91 ToolUtils::copy_to(&fDst[i], gColorTypes[i], src);
92 }
93
94 canvas->clear(0xFFDDDDDD);
95 paint.setAntiAlias(true);
96
97 SkFont font(ToolUtils::create_portable_typeface());
98
99 SkScalar width = SkIntToScalar(40);
100 SkScalar height = SkIntToScalar(40);
101 if (font.getSpacing() > height) {
102 height = font.getSpacing();
103 }
104 for (unsigned i = 0; i < NUM_CONFIGS; i++) {
105 const char* name = color_type_name(src.colorType());
106 SkScalar textWidth = font.measureText(name, strlen(name), SkTextEncoding::kUTF8);
107 if (textWidth > width) {
108 width = textWidth;
109 }
110 }
111 SkScalar horizOffset = width + horizMargin;
112 SkScalar vertOffset = height + vertMargin;
113 canvas->translate(SkIntToScalar(20), SkIntToScalar(20));
114
115 for (unsigned i = 0; i < NUM_CONFIGS; i++) {
116 canvas->save();
117 // Draw destination config name
118 const char* name = color_type_name(fDst[i].colorType());
119 SkScalar textWidth = font.measureText(name, strlen(name), SkTextEncoding::kUTF8);
120 SkScalar x = (width - textWidth) / SkScalar(2);
121 SkScalar y = font.getSpacing() / SkScalar(2);
122 canvas->drawSimpleText(name, strlen(name), SkTextEncoding::kUTF8, x, y, font, paint);
123
124 // Draw destination bitmap
125 canvas->translate(0, vertOffset);
126 x = (width - 40) / SkScalar(2);
127 canvas->drawBitmap(fDst[i], x, 0, &paint);
128 canvas->restore();
129
130 canvas->translate(horizOffset, 0);
131 }
132 }
133 };
134 } // namespace
135
136 //////////////////////////////////////////////////////////////////////////////
137
138 DEF_GM( return new BitmapCopyGM; )
139