Procházet zdrojové kódy

Merge pull request #31 from markisch/svg-attributes

Bold/italic attribute support for export to svg
tags/v0.99.beta20
Sam Hocevar GitHub před 3 roky
rodič
revize
4fa7ca6694
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 5 přidání a 2 odebrání
  1. +5
    -2
      caca/codec/export.c

+ 5
- 2
caca/codec/export.c Zobrazit soubor

@@ -904,10 +904,13 @@ static void *export_svg(caca_canvas_t const *cv, size_t *bytes)
continue;
}

cur += sprintf(cur, "<text style=\"fill:#%.03x\" "
cur += sprintf(cur, "<text style=\"fill:#%.03x\"%s%s "
"x=\"%d\" y=\"%d\">",
caca_attr_to_rgb12_fg(*lineattr++),
caca_attr_to_rgb12_fg(*lineattr),
(*lineattr & CACA_BOLD) ? " font-weight=\"bold\"" : "",
(*lineattr & CACA_ITALICS) ? " font-style=\"italic\"" : "",
x * 6, (y * 10) + 8);
lineattr++;

if(ch < 0x00000020)
*cur++ = '?';


Načítá se…
Zrušit
Uložit