thanks for the replies, moving the cursor is very handy :)<br><br>anyway my problem was caused by fontconfig not being configured for the target platform <br>(i&#39;m cross compiling for a set top box and fontconfig was pointing to the font-cache on my development pc)<br>
fixing this and adding the adjustments with size and position solved everything<br><br><div class="gmail_quote">On Wed, Mar 19, 2008 at 11:51 PM, Carl Worth &lt;<a href="mailto:cworth@cworth.org">cworth@cworth.org</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On Wed, 19 Mar 2008 14:09:02 +0100, &quot;Mehmet Kovacioglu&quot; wrote:<br>

&gt; thanks for the quick reply,<br>
&gt; here&#39;s the code:<br>
<br>
</div>Hi Mehmet,<br>
<br>
Thanks for the code sample. This makes it much easier to spot the<br>
problem.<br>
<div class="Ih2E3d"><br>
&gt; &nbsp; &nbsp; cairo_stroke(cr);<br>
&gt;<br>
&gt; ------------------<br>
&gt; &nbsp; &nbsp; up till here everything works fine<br>
&gt; &nbsp;------------------<br>
&gt;<br>
&gt; &nbsp; &nbsp; cairo_set_source_rgb (cr, 1.0, 0.0, 0.0);<br>
&gt; &nbsp; &nbsp; cairo_select_font_face (cr, &quot;sansserif&quot;,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);<br>
&gt; &nbsp; &nbsp; cairo_set_font_size (cr, 22);<br>
&gt; &nbsp; &nbsp; cairo_text_extents (cr, &quot;ABC&quot;, &amp;te);<br>
&gt; &nbsp; &nbsp; cairo_show_text (cr, &quot;ABC&quot;);<br>
&gt;<br>
&gt; --------------------<br>
&gt; the part above isnt shown in the resulting png file<br>
&gt; --------------------<br>
<br>
</div>So the problem here is that you&#39;re never providing a position for<br>
where you&#39;d like the cairo_show_text text to be placed.<br>
<br>
It&#39;s arguably an API error on our part that we didn&#39;t make you pass an<br>
(x,y) coordinate to that function---in which case it would have been<br>
obvious to you how to position the text.<br>
<br>
Instead, we took a cue from the PostScript specification and used the<br>
current path point as the position for cairo_show_text[*]. Since the<br>
last path-based operation you did was cairo_stroke and since it<br>
destroys the current path, then cairo assumes a current point of (0,0)<br>
for your text origin. And since the origin is to the lower-left of the<br>
glyphs for your font, none of your text is appearing on your image.<br>
<br>
If you had examined the contents of the te structure then you perhaps<br>
would have noticed that they describe a rectangle with negative Y<br>
coordinates.<br>
<br>
To fix this, insert something like the following just before the<br>
cairo_show_text call:<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_move_to (cr, 25, 25);<br>
<br>
and you should be all set. I do hope you have fun with cairo!<br>
<br>
-Carl<br>
<br>
[*] The advantage that it does have is that subsequent calls to<br>
cairo_show_text do continue the natural left-to-right layout that<br>
cairo_show_text uses:<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_move_to (cr, x, y);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_show_text (cr, &quot;One &quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_show_text (cr, &quot;word &quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_show_text (cr, &quot;at &quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_show_text (cr, &quot;a &quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;cairo_show_text (cr, &quot;time.&quot;);<br>
<br>
But that&#39;s still obviously extremely limited text layout. For anything<br>
more sophisticated in terms of layout, we highly recommend using pango<br>
and it&#39;s cairo integration instead, (it will do line-breaking,<br>
right-to-left layout, properly support Arabic, etc. etc.).<br>
</blockquote></div><br>