Skip to main content

Posts

Showing posts from December, 2012

gnocl::cairo instropection

The gnocl::cairo command is not intended to be some form of canvas object, but a means of drawing onto images for display on screen used perhaps in the creation of widgets or images. Bearing in mind the relatively small number of actions required for this task, it's reasonable to assume that the overhead of making multiple calls to the gnocl::cairo command is a worthwhile compromise. In response to the problem of how to get the extents of rendered text back from Cairo I came up with the solution highlighted in the following code: set pb(1) [gnocl::pixBuf new -width 256 -height 256] set myString "Peter Piper picked a peck of pickled peppers." set actions "     select_font_face {Sans normal bold}     set_font_size 15.0     text_extents $myString"   array set extents [gnocl::cairo $pb(1) -actions $actions] In the example above, the following values were obtained. extents(height)    = 14.0 extents(width)     = 320.0 extents(x_advance) = 322.0 extents(x_bearing) = 1.

New Pacakge gnocl::cairo

The process of tidying up the development code prior to a release increment has led me to weeding out some unused or difficult to maintain functions. One of these was the cairo.c module. This was experimental block of code which was an offshoot of developing the gnocl::splashscreen widget.  But, with the transition to Gtk3 on the horizon, all drawing operations will be performed by Cairo and so I thought that it was a good opportunity to make use of some of that old code. Hence, a new package. There's still way to go before it's finished and I'm still working on drawing to pixbufs but things are looking good. Here's the syntax for the command: gnocl::cairo <drawable-id> -actions <script> Where the script is simply a list of cairo operations.  Here's a snippet from my test script. set actions " # {sample set-line-join} set_line_width 40.96 move_to {76.8 84.48} rel_line_to {51.2 -51.2} rel_line_to {51.2 51.2} set_line_join miter stroke move_t