2 * Copyright 2011 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
12 SkJSCanvas(SkCanvas* target);
19 void setLineWidth(double);
22 void moveTo(double x, double y);
23 void lineTo(double x, double y);
29 void fillText(const char text[], double x, double y);
38 SkJSCanvas::SkJSCanvas(SkCanvas* target) : fTarget(target) {
39 fFillPaint.setAntiAlias(true);
40 sk_tool_utils::set_portable_typeface(&fFillPaint);
41 fStrokePaint.setAntiAlias(true);
42 fStrokePaint.setStyle(SkPaint::kStroke_Style);
43 fStrokePaint.setStrokeWidth(SK_Scalar1);
46 SkJSCanvas::~SkJSCanvas() {}
48 void SkJSCanvas::save() { fTarget->save(); }
49 void SkJSCanvas::restore() { fTarget->restore(); }
51 void SkJSCanvas::beginPath() { fPath.reset(); }
52 void SkJSCanvas::moveTo(double x, double y) {
53 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
56 void SkJSCanvas::lineTo(double x, double y) {
57 fPath.lineTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
60 void SkJSCanvas::closePath() { fPath.close(); }
62 void SkJSCanvas::fill() {
63 fTarget->drawPath(fPath, fFillPaint);
66 void SkJSCanvas::stroke() {
67 fStrokePaint.setStrokeWidth(SkDoubleToScalar(lineWidth));
68 fTarget->drawPath(fPath, fStrokePaint);
71 void SkJSCanvas::fillText(const char text[], double x, double y) {
72 fTarget->drawText(text, strlen(text),
73 SkDoubleToScalar(x), SkDoubleToScalar(y), fFillPaint);
76 ///////////////////////////////////////////////////////////////////////////////
78 static void dump(const SkPath& path) {
79 const SkRect& r = path.getBounds();
80 SkDebugf("isEmpty %d, bounds [%g %g %g %g]\n", path.isEmpty(),
81 r.fLeft, r.fTop, r.fRight, r.fBottom);
84 static void test_stroke(SkCanvas* canvas) {
88 path.reset(); path.moveTo(0, 0);
90 path.reset(); path.moveTo(100, 100);
92 path.reset(); path.moveTo(0, 0); path.moveTo(100, 100);
94 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100);
96 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100); path.moveTo(200, 200);
101 // TEST 1 - The rectangle as it's expected to look
102 var canvas = document.createElement('canvas');
103 document.body.appendChild(canvas);
104 var ctx = canvas.getContext("2d");
106 SkJSCanvas ctx(canvas);
113 ctx.lineTo(150, 100);
118 // no extra moveTo here
119 // ctx.moveTo(175, 125);
124 ctx.fillText("As Expected", 10, 10);
127 // TEST 2 - Includes an extra moveTo call before stroke; the rectangle appears larger
128 canvas = document.createElement('canvas');
129 document.body.appendChild(canvas);
130 ctx = canvas.getContext("2d");
132 canvas->translate(200, 0);
139 ctx.lineTo(150, 100);
144 ctx.moveTo(175, 125);
149 ctx.fillText("Larger Rectangle", 10, 10);
152 // TEST 3 - Identical to test 2 except the line width is 1
153 canvas = document.createElement('canvas');
154 document.body.appendChild(canvas);
155 ctx = canvas.getContext("2d");
157 canvas->translate(200, 0);
164 ctx.lineTo(150, 100);
169 ctx.moveTo(175, 125);
174 ctx.fillText("As Expected - line width 1", 10, 10);
177 class Poly2PolyGM : public skiagm::GM {
183 SkString onShortName() SK_OVERRIDE {
184 return SkString("poly2poly");
187 SkISize onISize() SK_OVERRIDE {
188 return SkISize::Make(835, 840);
191 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[],
192 const int idst[], int count) {
194 SkPoint src[4], dst[4];
196 for (int i = 0; i < count; i++) {
197 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
198 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1]));
202 matrix.setPolyToPoly(src, dst, count);
203 canvas->concat(matrix);
205 paint->setColor(SK_ColorGRAY);
206 paint->setStyle(SkPaint::kStroke_Style);
207 const SkScalar D = SkIntToScalar(64);
208 canvas->drawRectCoords(0, 0, D, D, *paint);
209 canvas->drawLine(0, 0, D, D, *paint);
210 canvas->drawLine(0, D, D, 0, *paint);
212 SkPaint::FontMetrics fm;
213 paint->getFontMetrics(&fm);
214 paint->setColor(SK_ColorRED);
215 paint->setStyle(SkPaint::kFill_Style);
217 SkScalar y = D/2 - (fm.fAscent + fm.fDescent)/2;
219 str.appendS32(count);
220 canvas->drawText(str.c_str(), str.size(), x, y, *paint);
225 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
226 if (false) { test_stroke(canvas); return; }
229 paint.setAntiAlias(true);
230 sk_tool_utils::set_portable_typeface(&paint);
231 paint.setStrokeWidth(SkIntToScalar(4));
232 paint.setTextSize(SkIntToScalar(40));
233 paint.setTextAlign(SkPaint::kCenter_Align);
236 canvas->translate(SkIntToScalar(10), SkIntToScalar(10));
237 // translate (1 point)
238 const int src1[] = { 0, 0 };
239 const int dst1[] = { 5, 5 };
240 doDraw(canvas, &paint, src1, dst1, 1);
244 canvas->translate(SkIntToScalar(160), SkIntToScalar(10));
245 // rotate/uniform-scale (2 points)
246 const int src2[] = { 32, 32, 64, 32 };
247 const int dst2[] = { 32, 32, 64, 48 };
248 doDraw(canvas, &paint, src2, dst2, 2);
252 canvas->translate(SkIntToScalar(10), SkIntToScalar(110));
253 // rotate/skew (3 points)
254 const int src3[] = { 0, 0, 64, 0, 0, 64 };
255 const int dst3[] = { 0, 0, 96, 0, 24, 64 };
256 doDraw(canvas, &paint, src3, dst3, 3);
260 canvas->translate(SkIntToScalar(160), SkIntToScalar(110));
261 // perspective (4 points)
262 const int src4[] = { 0, 0, 64, 0, 64, 64, 0, 64 };
263 const int dst4[] = { 0, 0, 96, 0, 64, 96, 0, 64 };
264 doDraw(canvas, &paint, src4, dst4, 4);
269 typedef skiagm::GM INHERITED;
272 //////////////////////////////////////////////////////////////////////////////
274 DEF_GM( return new Poly2PolyGM; )