blob: 0411b398b809bc8efec51eba7e76aff7180a4275 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
tfarina@chromium.orge0e71af2012-09-25 20:16:46 +00007
reed@android.com6413e792010-04-12 14:27:37 +00008#include "SkCanvas.h"
scroggo@google.comd9ba9a02013-03-21 19:43:15 +00009#include "SkCommandLineFlags.h"
reed@google.com4b0757b2013-05-20 16:33:41 +000010#include "SkData.h"
reed@google.com99ac02b2013-06-07 20:30:16 +000011#include "SkDocument.h"
reed@android.com6413e792010-04-12 14:27:37 +000012#include "SkGraphics.h"
reed@google.com4b0757b2013-05-20 16:33:41 +000013#include "SkSurface.h"
14#include "SkImage.h"
15#include "SkStream.h"
reed@android.com6413e792010-04-12 14:27:37 +000016#include "SkString.h"
reed@android.com6413e792010-04-12 14:27:37 +000017
reed@google.com99ac02b2013-06-07 20:30:16 +000018DEFINE_string2(outFile, o, "skhello", "The filename to write the image.");
scroggo@google.com604e0c22013-04-09 21:25:46 +000019DEFINE_string2(text, t, "Hello", "The string to write.");
reed@android.com6413e792010-04-12 14:27:37 +000020
reed@google.com99ac02b2013-06-07 20:30:16 +000021static void doDraw(SkCanvas* canvas, const SkPaint& paint, const char text[]) {
Mike Reed918e1442017-01-23 11:39:45 -050022 SkRect bounds = canvas->getLocalClipBounds();
reed@google.com99ac02b2013-06-07 20:30:16 +000023
24 canvas->drawColor(SK_ColorWHITE);
25 canvas->drawText(text, strlen(text),
26 bounds.centerX(), bounds.centerY(),
27 paint);
28}
29
30static bool do_surface(int w, int h, const char path[], const char text[],
31 const SkPaint& paint) {
robertphillips702edbd2015-06-23 06:26:08 -070032 SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
reede8f30622016-03-23 18:59:25 -070033 sk_sp<SkSurface> surface(SkSurface::MakeRasterN32Premul(w, h, &props));
reed@google.com99ac02b2013-06-07 20:30:16 +000034 doDraw(surface->getCanvas(), paint, text);
skia.committer@gmail.com63193672013-06-08 07:01:13 +000035
reed9ce9d672016-03-17 10:51:11 -070036 sk_sp<SkImage> image(surface->makeImageSnapshot());
bungeman38d909e2016-08-02 14:40:46 -070037 sk_sp<SkData> data(image->encode());
38 if (!data) {
reed@google.com99ac02b2013-06-07 20:30:16 +000039 return false;
40 }
41 SkFILEWStream stream(path);
42 return stream.write(data->data(), data->size());
43}
44
45static bool do_document(int w, int h, const char path[], const char text[],
46 const SkPaint& paint) {
halcanary676ab682016-05-03 12:10:04 -070047 sk_sp<SkDocument> doc(SkDocument::MakePDF(path));
reed@google.com99ac02b2013-06-07 20:30:16 +000048 if (doc.get()) {
49 SkScalar width = SkIntToScalar(w);
50 SkScalar height = SkIntToScalar(h);
halcanary96fcdcc2015-08-27 07:41:13 -070051 doDraw(doc->beginPage(width, height, nullptr), paint, text);
reed@google.com99ac02b2013-06-07 20:30:16 +000052 return true;
53 }
54 return false;
55}
56
caryclark@google.com5987f582012-10-02 18:33:14 +000057int tool_main(int argc, char** argv);
58int tool_main(int argc, char** argv) {
scroggo@google.comd9ba9a02013-03-21 19:43:15 +000059 SkCommandLineFlags::SetUsage("");
60 SkCommandLineFlags::Parse(argc, argv);
commit-bot@chromium.org31ea3392013-03-04 20:58:01 +000061
reed@android.com6413e792010-04-12 14:27:37 +000062 SkAutoGraphics ag;
reed@google.com99ac02b2013-06-07 20:30:16 +000063 SkString path("skhello");
reed@android.com6413e792010-04-12 14:27:37 +000064 SkString text("Hello");
65
scroggo@google.com604e0c22013-04-09 21:25:46 +000066 if (!FLAGS_outFile.isEmpty()) {
67 path.set(FLAGS_outFile[0]);
commit-bot@chromium.org31ea3392013-03-04 20:58:01 +000068 }
scroggo@google.com604e0c22013-04-09 21:25:46 +000069 if (!FLAGS_text.isEmpty()) {
70 text.set(FLAGS_text[0]);
reed@android.com6413e792010-04-12 14:27:37 +000071 }
72
73 SkPaint paint;
74 paint.setAntiAlias(true);
75 paint.setTextSize(SkIntToScalar(30));
reed@google.com4b0757b2013-05-20 16:33:41 +000076 paint.setTextAlign(SkPaint::kCenter_Align);
77
reed@android.com6413e792010-04-12 14:27:37 +000078 SkScalar width = paint.measureText(text.c_str(), text.size());
79 SkScalar spacing = paint.getFontSpacing();
80
reed@google.come1ca7052013-12-17 19:22:07 +000081 int w = SkScalarRoundToInt(width) + 30;
82 int h = SkScalarRoundToInt(spacing) + 30;
reed@android.com6413e792010-04-12 14:27:37 +000083
reed@google.com99ac02b2013-06-07 20:30:16 +000084 static const struct {
85 bool (*fProc)(int w, int h, const char path[], const char text[],
86 const SkPaint&);
87 const char* fSuffix;
88 } gRec[] = {
89 { do_surface, ".png" },
90 { do_document, ".pdf" },
reed@google.com4b0757b2013-05-20 16:33:41 +000091 };
skia.committer@gmail.com63193672013-06-08 07:01:13 +000092
reed@google.com99ac02b2013-06-07 20:30:16 +000093 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
94 SkString file;
95 file.printf("%s%s", path.c_str(), gRec[i].fSuffix);
96 if (!gRec[i].fProc(w, h, file.c_str(), text.c_str(), paint)) {
97 return -1;
98 }
scroggo@google.com7def5e12013-05-31 14:00:10 +000099 }
reed@google.com99ac02b2013-06-07 20:30:16 +0000100 return 0;
reed@android.com6413e792010-04-12 14:27:37 +0000101}
caryclark@google.com5987f582012-10-02 18:33:14 +0000102
103#if !defined SK_BUILD_FOR_IOS
104int main(int argc, char * const argv[]) {
105 return tool_main(argc, (char**) argv);
106}
107#endif