blob: 85708526fc43deb851bcf7c783aaf468fcc11b57 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include "fiddle/examples.h"
4// HASH=e99e7be0d8f67dfacbecf85df585433d
5REG_FIDDLE(Canvas_102, 256, 128, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkIRect center = { 20, 10, 50, 40 };
8 SkBitmap bitmap;
9 bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60));
10 SkCanvas bitCanvas(bitmap);
11 SkPaint paint;
12 SkColor gray = 0xFF000000;
13 int left = 0;
14 for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) {
15 int top = 0;
16 for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) {
17 paint.setColor(gray);
18 bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint);
19 gray += 0x001f1f1f;
20 top = bottom;
21 }
22 left = right;
23 }
24 for (auto dest: { 20, 30, 40, 60, 90 } ) {
25 canvas->drawBitmapNine(bitmap, center, SkRect::MakeWH(dest, 110 - dest), nullptr);
26 canvas->translate(dest + 4, 0);
27 }
28}
29} // END FIDDLE