[swift-users] Need Help with C-to-Swift (finally)

Jason Dusek jason.dusek at gmail.com
Fri Dec 11 00:40:34 CST 2015


When you say, output to Swift, do you mean, call it from Swift? Return the
PNG or surface to Swift?

On Thu, 10 Dec 2015 at 22:39 Gage Morgan via swift-users <
swift-users at swift.org> wrote:

> So, if I had this code written in C:
>
> 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;
> }
>
>
> 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.
>
> _______________________________________________
> swift-users mailing list
> swift-users at swift.org
> https://lists.swift.org/mailman/listinfo/swift-users
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-users/attachments/20151211/b6388770/attachment.html>


More information about the swift-users mailing list