skia2/gm/cgm.c
Mike Reed 66c505f6e8 expand imageinfo in C api, start on colorspace
After sk_imageinfo was initially created, we have added a colorspace to it,
and that object is a smart-pointer. In response to that, this CL upgrades
imageinfo to an "object" (like paint), so we can manage the ref-counting of
its colorspace, and to allow for future changes/expansion (like paint).

Bug: skia:
Change-Id: I629ff99c0820fdbe83f062d9fb768c15cda68e18
Reviewed-on: https://skia-review.googlesource.com/157156
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
2018-09-28 17:52:59 +00:00

79 lines
2.0 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.
*/
// EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL
// DO NOT USE -- FOR INTERNAL TESTING ONLY
#include "sk_canvas.h"
#include "sk_data.h"
#include "sk_image.h"
#include "sk_imageinfo.h"
#include "sk_paint.h"
#include "sk_shader.h"
#include "sk_surface.h"
extern void sk_test_c_api(sk_canvas_t*);
#define W 256
#define H 256
static sk_shader_t* make_shader() {
sk_point_t pts[] = { { 0, 0 }, { W, H } };
sk_color_t colors[] = { 0xFF00FF00, 0xFF0000FF };
return sk_shader_new_linear_gradient(pts, colors, NULL, 2, CLAMP_SK_SHADER_TILEMODE, NULL);
}
static void do_draw(sk_canvas_t* canvas) {
sk_paint_t* paint = sk_paint_new();
sk_paint_set_antialias(paint, true);
sk_paint_set_color(paint, 0xFFFFFFFF);
sk_canvas_draw_paint(canvas, paint);
sk_rect_t r = { 10, 10, W - 10, H - 10 };
sk_paint_set_color(paint, 0xFFFF0000);
sk_canvas_draw_rect(canvas, &r, paint);
sk_shader_t* shader = make_shader();
sk_paint_set_shader(paint, shader);
sk_shader_unref(shader);
sk_canvas_draw_oval(canvas, &r, paint);
sk_paint_delete(paint);
}
void sk_test_c_api(sk_canvas_t* canvas) {
do_draw(canvas);
sk_imageinfo_t* info = sk_imageinfo_new(W, H, RGBA_8888_SK_COLORTYPE, OPAQUE_SK_ALPHATYPE,
NULL);
sk_surfaceprops_t surfaceProps = { UNKNOWN_SK_PIXELGEOMETRY };
sk_surface_t* surf = sk_surface_new_raster(info, &surfaceProps);
sk_imageinfo_delete(info);
do_draw(sk_surface_get_canvas(surf));
sk_image_t* img0 = sk_surface_new_image_snapshot(surf);
sk_surface_unref(surf);
sk_canvas_draw_image(canvas, img0, W + 10, 10, NULL);
sk_data_t* data = sk_image_encode(img0);
sk_image_unref(img0);
sk_image_t* img1 = sk_image_new_from_encoded(data, NULL);
sk_data_unref(data);
if (img1) {
sk_canvas_draw_image(canvas, img1, W/2, H/2, NULL);
sk_image_unref(img1);
}
}