blob: e7418ad45300dfeafd3f58ba467aedc2efc1cb73 [file] [log] [blame]
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +00001/*
2 * Copyright 2014 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 *
7 * Simple tool to generate SKP files for testing.
8 */
9
10#include "SkCanvas.h"
11#include "SkColor.h"
12#include "SkCommandLineFlags.h"
13#include "SkPaint.h"
14#include "SkPicture.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000015#include "SkPictureRecorder.h"
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000016#include "SkScalar.h"
17#include "SkStream.h"
18
bungeman60e0fee2015-08-26 05:15:46 -070019#include <stdlib.h>
20
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000021// Flags used by this file, alphabetically:
22DEFINE_int32(blue, 128, "Value of blue color channel in image, 0-255.");
commit-bot@chromium.org238771c2014-01-15 16:33:31 +000023DEFINE_int32(border, 4, "Width of the black border around the image.");
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000024DEFINE_int32(green, 128, "Value of green color channel in image, 0-255.");
25DEFINE_int32(height, 200, "Height of canvas to create.");
26DEFINE_int32(red, 128, "Value of red color channel in image, 0-255.");
27DEFINE_int32(width, 300, "Width of canvas to create.");
28DEFINE_string(writePath, "", "Filepath to write the SKP into.");
29
robertphillipsa8d7f0b2014-08-29 08:03:56 -070030// Create a 'width' by 'height' skp with a 'border'-wide black border around
31// a 'color' rectangle.
32static void make_skp(SkScalar width, SkScalar height, SkScalar border, SkColor color,
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000033 const char *writePath) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +000034 SkPictureRecorder recorder;
halcanary96fcdcc2015-08-27 07:41:13 -070035 SkCanvas* canvas = recorder.beginRecording(width, height, nullptr, 0);
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000036 SkPaint paint;
37 paint.setStyle(SkPaint::kFill_Style);
commit-bot@chromium.org238771c2014-01-15 16:33:31 +000038 paint.setColor(SK_ColorBLACK);
robertphillipsa8d7f0b2014-08-29 08:03:56 -070039 SkRect r = SkRect::MakeWH(width, height);
40 canvas->drawRect(r, paint);
commit-bot@chromium.org238771c2014-01-15 16:33:31 +000041 paint.setColor(color);
robertphillipsa8d7f0b2014-08-29 08:03:56 -070042 r.inset(border, border);
43 canvas->drawRect(r, paint);
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000044 SkFILEWStream stream(writePath);
reedca2622b2016-03-18 07:25:55 -070045 recorder.finishRecordingAsPicture()->serialize(&stream);
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000046}
47
48int tool_main(int argc, char** argv);
49int tool_main(int argc, char** argv) {
50 SkCommandLineFlags::SetUsage("Creates a simple .skp file for testing.");
51 SkCommandLineFlags::Parse(argc, argv);
52
53 // Validate flags.
54 if ((FLAGS_blue < 0) || (FLAGS_blue > 255)) {
55 SkDebugf("--blue must be within range [0,255]\n");
56 exit(-1);
57 }
58 if ((FLAGS_green < 0) || (FLAGS_green > 255)) {
59 SkDebugf("--green must be within range [0,255]\n");
60 exit(-1);
61 }
62 if (FLAGS_height <= 0) {
63 SkDebugf("--height must be >0\n");
64 exit(-1);
65 }
66 if ((FLAGS_red < 0) || (FLAGS_red > 255)) {
67 SkDebugf("--red must be within range [0,255]\n");
68 exit(-1);
69 }
70 if (FLAGS_width <= 0) {
71 SkDebugf("--width must be >0\n");
72 exit(-1);
73 }
74 if (FLAGS_writePath.isEmpty()) {
75 SkDebugf("--writePath must be nonempty\n");
76 exit(-1);
77 }
78
79 SkColor color = SkColorSetRGB(FLAGS_red, FLAGS_green, FLAGS_blue);
halcanary9d524f22016-03-29 09:03:52 -070080 make_skp(SkIntToScalar(FLAGS_width),
81 SkIntToScalar(FLAGS_height),
82 SkIntToScalar(FLAGS_border),
robertphillipsa8d7f0b2014-08-29 08:03:56 -070083 color, FLAGS_writePath[0]);
commit-bot@chromium.orgc7355982014-01-02 19:42:15 +000084 return 0;
85}
86
87#if !defined SK_BUILD_FOR_IOS
88int main(int argc, char * const argv[]) {
89 return tool_main(argc, (char**) argv);
90}
91#endif