From 0cf4e680bb5d72a58df86b989a3b10c1c0ec4d23 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Tue, 12 May 2020 14:39:20 -0400 Subject: ttf: Add TTF_GlyphMetrics binding. Thanks to Gerry Agbobada for requesting this and sending an initial patch. --- sdl2/ttf.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'sdl2/ttf.scm') diff --git a/sdl2/ttf.scm b/sdl2/ttf.scm index 4c4d3be..0a73b8a 100644 --- a/sdl2/ttf.scm +++ b/sdl2/ttf.scm @@ -71,6 +71,20 @@ size is POINT-SIZE." "Return the maximum height of FONT." (ffi:ttf-font-height (unwrap-font font))) +(define (font-glyph-metrics font char) + "Return a 5-element list containing the metrics of CHAR in FONT in +the following format: (minx maxx miny maxy advance)" + (let ((bv (make-s32vector 5))) + (if (zero? (ffi:ttf-glyph-metrics (unwrap-font font) + (char->integer char) + (bytevector->pointer bv) + (bytevector->pointer bv 4) + (bytevector->pointer bv 8) + (bytevector->pointer bv 16) + (bytevector->pointer bv 32))) + (s32vector->list bv) + (sdl-error "font-glyph-metrics" "failed to get glyph metrics")))) + (define (render-font-solid font text color) "Render TEXT, a UTF-8 encoded string, using FONT and COLOR, the foreground color, and return a surface containing the results." -- cgit v1.2.3