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 #include "gm/gm.h"
9 #include "include/core/SkCanvas.h"
10 #include "include/core/SkFilterQuality.h"
11 #include "include/core/SkFont.h"
12 #include "include/core/SkImageFilter.h"
13 #include "include/core/SkMatrix.h"
14 #include "include/core/SkPaint.h"
15 #include "include/core/SkRect.h"
16 #include "include/core/SkScalar.h"
17 #include "include/core/SkTypeface.h"
18 #include "include/core/SkTypes.h"
19 #include "include/effects/SkImageFilters.h"
20 #include "tools/ToolUtils.h"
21 
22 #define WIDTH 640
23 #define HEIGHT 480
24 
25 #define RESIZE_FACTOR SkIntToScalar(2)
26 
DEF_SIMPLE_GM(imageresizetiled,canvas,WIDTH,HEIGHT)27 DEF_SIMPLE_GM(imageresizetiled, canvas, WIDTH, HEIGHT) {
28         SkPaint paint;
29         SkMatrix matrix;
30         matrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR);
31         paint.setImageFilter(SkImageFilters::MatrixTransform(matrix,
32                                                              kNone_SkFilterQuality,
33                                                              nullptr));
34 
35         SkFont         font(ToolUtils::create_portable_typeface(), 100);
36         const SkScalar tile_size = SkIntToScalar(100);
37         for (SkScalar y = 0; y < HEIGHT; y += tile_size) {
38             for (SkScalar x = 0; x < WIDTH; x += tile_size) {
39                 canvas->save();
40                 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
41                 canvas->scale(SkScalarInvert(RESIZE_FACTOR),
42                               SkScalarInvert(RESIZE_FACTOR));
43                 canvas->saveLayer(nullptr, &paint);
44                 const char* str[] = {
45                     "The quick",
46                     "brown fox",
47                     "jumped over",
48                     "the lazy dog.",
49                 };
50                 float posY = 0;
51                 for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
52                     posY += 100.0f;
53                     canvas->drawString(str[i], 0.0f, posY, font, SkPaint());
54                 }
55                 canvas->restore();
56                 canvas->restore();
57             }
58         }
59 }
60