c640d0dc96
This reverts commit fdcfb8b7c2
.
> Original change's description:
> > SkTypes: extract SkTo
> >
> > Change-Id: I8de790d5013db2105ad885fa2683303d7c250b09
> > Reviewed-on: https://skia-review.googlesource.com/133620
> > Reviewed-by: Mike Klein <mtklein@google.com>
Change-Id: Ida74fbc5c21248a724a5edbf9fae18a33bcb23aa
Reviewed-on: https://skia-review.googlesource.com/134506
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Resources.h"
|
|
#include "SkTo.h"
|
|
#include "SkTypeface.h"
|
|
#include "gm.h"
|
|
|
|
static void excercise_draw_pos_text(SkCanvas* canvas,
|
|
const char* text,
|
|
SkScalar x, SkScalar y,
|
|
const SkPaint& paint) {
|
|
size_t textLen = strlen(text);
|
|
SkAutoTArray<SkScalar> widths(SkToInt(textLen));
|
|
paint.getTextWidths(text, textLen, &widths[0]);
|
|
SkAutoTArray<SkPoint> pos(SkToInt(textLen));
|
|
for (int i = 0; i < SkToInt(textLen); ++i) {
|
|
pos[i].set(x, y);
|
|
x += widths[i];
|
|
}
|
|
canvas->drawPosText(text, textLen, &pos[0], paint);
|
|
}
|
|
|
|
DEF_SIMPLE_GM(pdf_never_embed, canvas, 512, 512) {
|
|
SkPaint p;
|
|
p.setTextSize(60);
|
|
p.setTypeface(MakeResourceAsTypeface("fonts/Roboto2-Regular_NoEmbed.ttf"));
|
|
p.setAntiAlias(true);
|
|
|
|
if (!p.getTypeface()) {
|
|
return;
|
|
}
|
|
|
|
const char text[] = "HELLO, WORLD!";
|
|
|
|
canvas->drawColor(SK_ColorWHITE);
|
|
excercise_draw_pos_text(canvas, text, 30, 90, p);
|
|
|
|
canvas->save();
|
|
canvas->rotate(45.0f);
|
|
p.setColor(0xF0800000);
|
|
excercise_draw_pos_text(canvas, text, 30, 45, p);
|
|
canvas->restore();
|
|
|
|
canvas->save();
|
|
canvas->scale(1, 4.0);
|
|
p.setColor(0xF0008000);
|
|
excercise_draw_pos_text(canvas, text, 15, 70, p);
|
|
canvas->restore();
|
|
|
|
canvas->scale(1.0, 0.5);
|
|
p.setColor(0xF0000080);
|
|
canvas->drawString(text, 30, 700, p);
|
|
}
|
|
|
|
|
|
// should draw completely white.
|
|
DEF_SIMPLE_GM(pdf_crbug_772685, canvas, 612, 792) {
|
|
canvas->clipRect({-1, -1, 613, 793}, false);
|
|
canvas->translate(-571, 0);
|
|
canvas->scale(0.75, 0.75);
|
|
canvas->clipRect({-1, -1, 613, 793}, false);
|
|
canvas->translate(0, -816);
|
|
canvas->drawRect({0, 0, 1224, 1500}, SkPaint());
|
|
}
|
|
|