2014-03-07 03:25:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef sk_tool_utils_DEFINED
|
|
|
|
#define sk_tool_utils_DEFINED
|
|
|
|
|
2014-06-21 17:54:17 +00:00
|
|
|
#include "SkImageInfo.h"
|
2014-06-23 18:25:00 +00:00
|
|
|
#include "SkTypeface.h"
|
2014-03-07 03:25:16 +00:00
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
class SkBitmap;
|
|
|
|
class SkCanvas;
|
|
|
|
class SkPaint;
|
|
|
|
class SkTestFont;
|
2014-03-18 03:02:11 +00:00
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
namespace sk_tool_utils {
|
2014-06-23 18:25:00 +00:00
|
|
|
|
2014-03-17 21:31:26 +00:00
|
|
|
const char* colortype_name(SkColorType);
|
2014-03-07 03:25:16 +00:00
|
|
|
|
2014-06-23 18:25:00 +00:00
|
|
|
/**
|
|
|
|
* Sets the paint to use a platform-independent text renderer.
|
|
|
|
*/
|
2014-07-31 12:58:44 +00:00
|
|
|
void set_portable_typeface(SkPaint* paint, const char* name = NULL,
|
|
|
|
SkTypeface::Style style = SkTypeface::kNormal);
|
|
|
|
SkTypeface* create_portable_typeface(const char* name, SkTypeface::Style style);
|
|
|
|
void report_used_chars();
|
2014-06-23 18:25:00 +00:00
|
|
|
|
2014-03-07 03:25:16 +00:00
|
|
|
/**
|
|
|
|
* Call canvas->writePixels() by using the pixels from bitmap, but with an info that claims
|
|
|
|
* the pixels are colorType + alphaType
|
|
|
|
*/
|
|
|
|
void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
|
|
|
|
|
2014-07-31 12:58:44 +00:00
|
|
|
// private to sk_tool_utils
|
|
|
|
SkTypeface* create_font(const char* name, SkTypeface::Style );
|
|
|
|
SkTypeface* resource_font(const char* name, SkTypeface::Style );
|
|
|
|
|
2014-06-21 17:54:17 +00:00
|
|
|
} // namespace sk_tool_utils
|
|
|
|
|
|
|
|
#endif // sk_tool_utils_DEFINED
|