2012-08-13 14:22:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
#include "SkMagnifierImageFilter.h"
|
2013-09-16 18:19:30 +00:00
|
|
|
#include "SkRandom.h"
|
2012-08-13 14:22:17 +00:00
|
|
|
|
|
|
|
#define WIDTH 500
|
|
|
|
#define HEIGHT 500
|
|
|
|
|
2015-09-09 15:16:41 +00:00
|
|
|
DEF_SIMPLE_GM_BG(imagemagnifier, canvas, WIDTH, HEIGHT, SK_ColorBLACK) {
|
2014-10-23 22:00:10 +00:00
|
|
|
SkPaint filterPaint;
|
|
|
|
filterPaint.setImageFilter(
|
2014-03-10 10:51:58 +00:00
|
|
|
SkMagnifierImageFilter::Create(
|
2013-10-21 15:59:26 +00:00
|
|
|
SkRect::MakeXYWH(SkIntToScalar(100), SkIntToScalar(100),
|
2012-08-13 14:22:17 +00:00
|
|
|
SkIntToScalar(WIDTH / 2),
|
|
|
|
SkIntToScalar(HEIGHT / 2)),
|
|
|
|
100))->unref();
|
2015-08-27 14:41:13 +00:00
|
|
|
canvas->saveLayer(nullptr, &filterPaint);
|
2012-08-13 14:22:17 +00:00
|
|
|
const char* str = "The quick brown fox jumped over the lazy dog.";
|
2013-09-16 18:19:30 +00:00
|
|
|
SkRandom rand;
|
2012-08-13 14:22:17 +00:00
|
|
|
for (int i = 0; i < 25; ++i) {
|
2013-09-16 18:19:30 +00:00
|
|
|
int x = rand.nextULessThan(WIDTH);
|
|
|
|
int y = rand.nextULessThan(HEIGHT);
|
2014-10-23 22:00:10 +00:00
|
|
|
SkPaint paint;
|
2015-07-24 19:09:25 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&paint);
|
2015-07-16 19:35:58 +00:00
|
|
|
paint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0xFF000000));
|
2013-09-16 19:05:44 +00:00
|
|
|
paint.setTextSize(rand.nextRangeScalar(0, 300));
|
2014-10-23 22:00:10 +00:00
|
|
|
paint.setAntiAlias(true);
|
2012-08-13 14:22:17 +00:00
|
|
|
canvas->drawText(str, strlen(str), SkIntToScalar(x),
|
|
|
|
SkIntToScalar(y), paint);
|
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
}
|