<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>So, if I had this code written in C:<div><br></div><div><pre style="font-family: mono; margin-left: 124.281px; margin-right: 124.281px; border: 1px solid rgb(197, 197, 246); padding: 0.5em; font-size: medium; background-color: rgb(219, 219, 247);"><code>int
main (int argc, char *argv[])
{
        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, world");

        cairo_destroy (cr);
        cairo_surface_write_to_png (surface, "hello.png");
        cairo_surface_destroy (surface);
        return 0;
}</code></pre></div><div><br></div><div>how would I output to Swift? If I can get one or two examples, I'll be closer to finished with using Cairo in Swift.</div><div><br></div>                                               </div></body>
</html>