skia2/tools/skpmaker.cpp
Mike Klein be28ee2974 Make iOS main() functions normal.
The weird foo_mains are no longer needed when we build with GN.

CQ_INCLUDE_TRYBOTS=skia.primary:Build-Mac-Clang-arm-Debug-iOS

Change-Id: Iae50696741e0dc277d96dda4968a1ae41cb17c8a
Reviewed-on: https://skia-review.googlesource.com/8064
Commit-Queue: Mike Klein <mtklein@chromium.org>
Reviewed-by: Stephan Altmueller <stephana@google.com>
2017-02-06 18:02:41 +00:00

85 lines
2.7 KiB
C++

/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Simple tool to generate SKP files for testing.
*/
#include "SkCanvas.h"
#include "SkColor.h"
#include "SkCommandLineFlags.h"
#include "SkPaint.h"
#include "SkPicture.h"
#include "SkPictureRecorder.h"
#include "SkScalar.h"
#include "SkStream.h"
#include <stdlib.h>
// Flags used by this file, alphabetically:
DEFINE_int32(blue, 128, "Value of blue color channel in image, 0-255.");
DEFINE_int32(border, 4, "Width of the black border around the image.");
DEFINE_int32(green, 128, "Value of green color channel in image, 0-255.");
DEFINE_int32(height, 200, "Height of canvas to create.");
DEFINE_int32(red, 128, "Value of red color channel in image, 0-255.");
DEFINE_int32(width, 300, "Width of canvas to create.");
DEFINE_string(writePath, "", "Filepath to write the SKP into.");
// Create a 'width' by 'height' skp with a 'border'-wide black border around
// a 'color' rectangle.
static void make_skp(SkScalar width, SkScalar height, SkScalar border, SkColor color,
const char *writePath) {
SkPictureRecorder recorder;
SkCanvas* canvas = recorder.beginRecording(width, height, nullptr, 0);
SkPaint paint;
paint.setStyle(SkPaint::kFill_Style);
paint.setColor(SK_ColorBLACK);
SkRect r = SkRect::MakeWH(width, height);
canvas->drawRect(r, paint);
paint.setColor(color);
r.inset(border, border);
canvas->drawRect(r, paint);
SkFILEWStream stream(writePath);
recorder.finishRecordingAsPicture()->serialize(&stream);
}
int main(int argc, char** argv) {
SkCommandLineFlags::SetUsage("Creates a simple .skp file for testing.");
SkCommandLineFlags::Parse(argc, argv);
// Validate flags.
if ((FLAGS_blue < 0) || (FLAGS_blue > 255)) {
SkDebugf("--blue must be within range [0,255]\n");
exit(-1);
}
if ((FLAGS_green < 0) || (FLAGS_green > 255)) {
SkDebugf("--green must be within range [0,255]\n");
exit(-1);
}
if (FLAGS_height <= 0) {
SkDebugf("--height must be >0\n");
exit(-1);
}
if ((FLAGS_red < 0) || (FLAGS_red > 255)) {
SkDebugf("--red must be within range [0,255]\n");
exit(-1);
}
if (FLAGS_width <= 0) {
SkDebugf("--width must be >0\n");
exit(-1);
}
if (FLAGS_writePath.isEmpty()) {
SkDebugf("--writePath must be nonempty\n");
exit(-1);
}
SkColor color = SkColorSetRGB(FLAGS_red, FLAGS_green, FLAGS_blue);
make_skp(SkIntToScalar(FLAGS_width),
SkIntToScalar(FLAGS_height),
SkIntToScalar(FLAGS_border),
color, FLAGS_writePath[0]);
return 0;
}