Skip to content

Instantly share code, notes, and snippets.

@sumantro93
Created August 13, 2023 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumantro93/c4c173192e3130f6f31004f268b56dc8 to your computer and use it in GitHub Desktop.
Save sumantro93/c4c173192e3130f6f31004f268b56dc8 to your computer and use it in GitHub Desktop.
test_cairo.c
#include <cairo.h>
#include <cairo-gobject.h>
int main() {
cairo_surface_t *surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 240, 80);
cairo_t *cr = cairo_create(surface);
cairo_select_font_face(cr, "serif", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
cairo_set_font_size(cr, 32.0);
cairo_set_source_rgb(cr, 0.0, 0.0, 1.0);
cairo_move_to(cr, 10.0, 50.0);
cairo_show_text(cr, "Hello, Cairo!");
cairo_surface_write_to_png(surface, "output.png");
cairo_destroy(cr);
cairo_surface_destroy(surface);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment