You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1064 lines
33 KiB

  1. /*
  2. * libcaca Colour ASCII-Art library
  3. * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
  4. * 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
  5. * All Rights Reserved
  6. *
  7. * $Id$
  8. *
  9. * This library is free software. It comes without any warranty, to
  10. * the extent permitted by applicable law. You can redistribute it
  11. * and/or modify it under the terms of the Do What The Fuck You Want
  12. * To Public License, Version 2, as published by Sam Hocevar. See
  13. * http://sam.zoy.org/wtfpl/COPYING for more details.
  14. */
  15. /*
  16. * This file contains various export functions
  17. */
  18. #include "config.h"
  19. #if !defined(__KERNEL__)
  20. # include <stdlib.h>
  21. # include <stdio.h>
  22. # include <string.h>
  23. #endif
  24. #include "caca.h"
  25. #include "caca_internals.h"
  26. static inline int sprintu32(char *s, uint32_t x)
  27. {
  28. s[0] = (uint8_t)(x >> 24);
  29. s[1] = (uint8_t)(x >> 16) & 0xff;
  30. s[2] = (uint8_t)(x >> 8) & 0xff;
  31. s[3] = (uint8_t)(x ) & 0xff;
  32. return 4;
  33. }
  34. static inline int sprintu16(char *s, uint16_t x)
  35. {
  36. s[0] = (uint8_t)(x >> 8) & 0xff;
  37. s[1] = (uint8_t)(x ) & 0xff;
  38. return 2;
  39. }
  40. static void *export_caca(caca_canvas_t const *, size_t *);
  41. static void *export_ansi(caca_canvas_t const *, size_t *);
  42. static void *export_utf8(caca_canvas_t const *, size_t *, int);
  43. static void *export_html(caca_canvas_t const *, size_t *);
  44. static void *export_html3(caca_canvas_t const *, size_t *);
  45. static void *export_bbfr(caca_canvas_t const *, size_t *);
  46. static void *export_irc(caca_canvas_t const *, size_t *);
  47. static void *export_ps(caca_canvas_t const *, size_t *);
  48. static void *export_svg(caca_canvas_t const *, size_t *);
  49. static void *export_tga(caca_canvas_t const *, size_t *);
  50. /** \brief Export a canvas into a foreign format.
  51. *
  52. * This function exports a libcaca canvas into various foreign formats such
  53. * as ANSI art, HTML, IRC colours, etc. The returned pointer should be passed
  54. * to free() to release the allocated storage when it is no longer needed.
  55. *
  56. * Valid values for \c format are:
  57. * - \c "caca": export native libcaca files.
  58. * - \c "ansi": export ANSI art (CP437 charset with ANSI colour codes).
  59. * - \c "html": export an HTML page with CSS information.
  60. * - \c "html3": export an HTML table that should be compatible with
  61. * most navigators, including textmode ones.
  62. * - \c "irc": export UTF-8 text with mIRC colour codes.
  63. * - \c "ps": export a PostScript document.
  64. * - \c "svg": export an SVG vector image.
  65. * - \c "tga": export a TGA image.
  66. *
  67. * If an error occurs, NULL is returned and \b errno is set accordingly:
  68. * - \c EINVAL Unsupported format requested.
  69. * - \c ENOMEM Not enough memory to allocate output buffer.
  70. *
  71. * \param cv A libcaca canvas
  72. * \param format A string describing the requested output format.
  73. * \param bytes A pointer to a size_t where the number of allocated bytes
  74. * will be written.
  75. * \return A pointer to the exported memory area, or NULL in case of error.
  76. */
  77. void *caca_export_memory(caca_canvas_t const *cv, char const *format,
  78. size_t *bytes)
  79. {
  80. if(!strcasecmp("caca", format))
  81. return export_caca(cv, bytes);
  82. if(!strcasecmp("ansi", format))
  83. return export_ansi(cv, bytes);
  84. if(!strcasecmp("utf8", format))
  85. return export_utf8(cv, bytes, 0);
  86. if(!strcasecmp("utf8cr", format))
  87. return export_utf8(cv, bytes, 1);
  88. if(!strcasecmp("html", format))
  89. return export_html(cv, bytes);
  90. if(!strcasecmp("html3", format))
  91. return export_html3(cv, bytes);
  92. if(!strcasecmp("bbfr", format))
  93. return export_bbfr(cv, bytes);
  94. if(!strcasecmp("irc", format))
  95. return export_irc(cv, bytes);
  96. if(!strcasecmp("ps", format))
  97. return export_ps(cv, bytes);
  98. if(!strcasecmp("svg", format))
  99. return export_svg(cv, bytes);
  100. if(!strcasecmp("tga", format))
  101. return export_tga(cv, bytes);
  102. seterrno(EINVAL);
  103. return NULL;
  104. }
  105. /** \brief Get available export formats
  106. *
  107. * Return a list of available export formats. The list is a NULL-terminated
  108. * array of strings, interleaving a string containing the internal value for
  109. * the export format, to be used with caca_export_memory(), and a string
  110. * containing the natural language description for that export format.
  111. *
  112. * This function never fails.
  113. *
  114. * \return An array of strings.
  115. */
  116. char const * const * caca_get_export_list(void)
  117. {
  118. static char const * const list[] =
  119. {
  120. "caca", "native libcaca format",
  121. "ansi", "ANSI",
  122. "utf8", "UTF-8 with ANSI escape codes",
  123. "utf8cr", "UTF-8 with ANSI escape codes and MS-DOS \\r",
  124. "html", "HTML",
  125. "html3", "backwards-compatible HTML",
  126. "bbfr", "BBCode (French)",
  127. "irc", "IRC with mIRC colours",
  128. "ps", "PostScript document",
  129. "svg", "SVG vector image",
  130. "tga", "TGA image",
  131. NULL, NULL
  132. };
  133. return list;
  134. }
  135. /*
  136. * XXX: the following functions are local.
  137. */
  138. /* Generate a native libcaca canvas file. */
  139. static void *export_caca(caca_canvas_t const *cv, size_t *bytes)
  140. {
  141. char *data, *cur;
  142. int f, n;
  143. /* 52 bytes for the header:
  144. * - 4 bytes for "\xCA\xCA" + "CV"
  145. * - 16 bytes for the canvas header
  146. * - 32 bytes for the frame info
  147. * 8 bytes for each character cell */
  148. *bytes = 20 + (32 + 8 * cv->width * cv->height) * cv->framecount;
  149. cur = data = malloc(*bytes);
  150. /* magic */
  151. cur += sprintf(cur, "%s", "\xCA\xCA" "CV");
  152. /* canvas_header */
  153. cur += sprintu32(cur, 16 + 32 * cv->framecount);
  154. cur += sprintu32(cur, cv->width * cv->height * 8 * cv->framecount);
  155. cur += sprintu16(cur, 0x0001);
  156. cur += sprintu32(cur, cv->framecount);
  157. cur += sprintu16(cur, 0x0000);
  158. /* frame_info */
  159. for(f = 0; f < cv->framecount; f++)
  160. {
  161. cur += sprintu32(cur, cv->width);
  162. cur += sprintu32(cur, cv->height);
  163. cur += sprintu32(cur, 0);
  164. cur += sprintu32(cur, cv->curattr);
  165. cur += sprintu32(cur, cv->frames[f].x);
  166. cur += sprintu32(cur, cv->frames[f].y);
  167. cur += sprintu32(cur, cv->frames[f].handlex);
  168. cur += sprintu32(cur, cv->frames[f].handley);
  169. }
  170. /* canvas_data */
  171. for(f = 0; f < cv->framecount; f++)
  172. {
  173. uint32_t *attrs = cv->frames[f].attrs;
  174. uint32_t *chars = cv->frames[f].chars;
  175. for(n = cv->height * cv->width; n--; )
  176. {
  177. cur += sprintu32(cur, *chars++);
  178. cur += sprintu32(cur, *attrs++);
  179. }
  180. }
  181. return data;
  182. }
  183. /* Generate UTF-8 representation of current canvas. */
  184. static void *export_utf8(caca_canvas_t const *cv, size_t *bytes,
  185. int cr)
  186. {
  187. static uint8_t const palette[] =
  188. {
  189. 0, 4, 2, 6, 1, 5, 3, 7,
  190. 8, 12, 10, 14, 9, 13, 11, 15
  191. };
  192. char *data, *cur;
  193. int x, y;
  194. /* 23 bytes assumed for max length per pixel ('\e[5;1;3x;4y;9x;10ym' plus
  195. * 4 max bytes for a UTF-8 character).
  196. * Add height*9 to that (zeroes color at the end and jump to next line) */
  197. *bytes = (cv->height * 9) + (cv->width * cv->height * 23);
  198. cur = data = malloc(*bytes);
  199. for(y = 0; y < cv->height; y++)
  200. {
  201. uint32_t *lineattr = cv->attrs + y * cv->width;
  202. uint32_t *linechar = cv->chars + y * cv->width;
  203. uint8_t prevfg = 0x10;
  204. uint8_t prevbg = 0x10;
  205. for(x = 0; x < cv->width; x++)
  206. {
  207. uint32_t attr = lineattr[x];
  208. uint32_t ch = linechar[x];
  209. uint8_t ansifg, ansibg, fg, bg;
  210. if(ch == CACA_MAGIC_FULLWIDTH)
  211. continue;
  212. ansifg = caca_attr_to_ansi_fg(attr);
  213. ansibg = caca_attr_to_ansi_bg(attr);
  214. fg = ansifg < 0x10 ? palette[ansifg] : 0x10;
  215. bg = ansibg < 0x10 ? palette[ansibg] : 0x10;
  216. /* TODO: the [0 could be omitted in some cases */
  217. if(fg != prevfg || bg != prevbg)
  218. {
  219. cur += sprintf(cur, "\033[0");
  220. if(fg < 8)
  221. cur += sprintf(cur, ";3%d", fg);
  222. else if(fg < 16)
  223. cur += sprintf(cur, ";1;3%d;9%d", fg - 8, fg - 8);
  224. if(bg < 8)
  225. cur += sprintf(cur, ";4%d", bg);
  226. else if(bg < 16)
  227. cur += sprintf(cur, ";5;4%d;10%d", bg - 8, bg - 8);
  228. cur += sprintf(cur, "m");
  229. }
  230. cur += caca_utf32_to_utf8(cur, ch);
  231. prevfg = fg;
  232. prevbg = bg;
  233. }
  234. if(prevfg != 0x10 || prevbg != 0x10)
  235. cur += sprintf(cur, "\033[0m");
  236. cur += sprintf(cur, cr ? "\r\n" : "\n");
  237. }
  238. /* Crop to really used size */
  239. debug("utf8 export: alloc %lu bytes, realloc %lu",
  240. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  241. *bytes = (uintptr_t)(cur - data);
  242. data = realloc(data, *bytes);
  243. return data;
  244. }
  245. /* Generate ANSI representation of current canvas. */
  246. static void *export_ansi(caca_canvas_t const *cv, size_t *bytes)
  247. {
  248. static uint8_t const palette[] =
  249. {
  250. 0, 4, 2, 6, 1, 5, 3, 7,
  251. 8, 12, 10, 14, 9, 13, 11, 15
  252. };
  253. char *data, *cur;
  254. int x, y;
  255. uint8_t prevfg = -1;
  256. uint8_t prevbg = -1;
  257. /* 16 bytes assumed for max length per pixel ('\e[5;1;3x;4ym' plus
  258. * 1 byte for a CP437 character).
  259. * Add height*9 to that (zeroes color at the end and jump to next line) */
  260. *bytes = (cv->height * 9) + (cv->width * cv->height * 16);
  261. cur = data = malloc(*bytes);
  262. for(y = 0; y < cv->height; y++)
  263. {
  264. uint32_t *lineattr = cv->attrs + y * cv->width;
  265. uint32_t *linechar = cv->chars + y * cv->width;
  266. for(x = 0; x < cv->width; x++)
  267. {
  268. uint8_t ansifg = caca_attr_to_ansi_fg(lineattr[x]);
  269. uint8_t ansibg = caca_attr_to_ansi_bg(lineattr[x]);
  270. uint8_t fg = ansifg < 0x10 ? palette[ansifg] : CACA_LIGHTGRAY;
  271. uint8_t bg = ansibg < 0x10 ? palette[ansibg] : CACA_BLACK;
  272. uint32_t ch = linechar[x];
  273. if(ch == CACA_MAGIC_FULLWIDTH)
  274. ch = '?';
  275. if(fg != prevfg || bg != prevbg)
  276. {
  277. cur += sprintf(cur, "\033[0;");
  278. if(fg < 8)
  279. if(bg < 8)
  280. cur += sprintf(cur, "3%d;4%dm", fg, bg);
  281. else
  282. cur += sprintf(cur, "5;3%d;4%dm", fg, bg - 8);
  283. else
  284. if(bg < 8)
  285. cur += sprintf(cur, "1;3%d;4%dm", fg - 8, bg);
  286. else
  287. cur += sprintf(cur, "5;1;3%d;4%dm", fg - 8, bg - 8);
  288. }
  289. *cur++ = caca_utf32_to_cp437(ch);
  290. prevfg = fg;
  291. prevbg = bg;
  292. }
  293. if(cv->width == 80)
  294. {
  295. cur += sprintf(cur, "\033[s\n\033[u");
  296. }
  297. else
  298. {
  299. cur += sprintf(cur, "\033[0m\r\n");
  300. prevfg = -1;
  301. prevbg = -1;
  302. }
  303. }
  304. /* Crop to really used size */
  305. debug("ansi export: alloc %lu bytes, realloc %lu",
  306. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  307. *bytes = (uintptr_t)(cur - data);
  308. data = realloc(data, *bytes);
  309. return data;
  310. }
  311. /* Generate HTML representation of current canvas. */
  312. static void *export_html(caca_canvas_t const *cv, size_t *bytes)
  313. {
  314. char *data, *cur;
  315. int x, y, len;
  316. /* The HTML header: less than 1000 bytes
  317. * A line: 7 chars for "<br />\n"
  318. * A glyph: 47 chars for "<span style="color:#xxx;background-color:#xxx">"
  319. * 83 chars for ";font-weight..."
  320. * up to 9 chars for "&#xxxxxx;", far less for pure ASCII
  321. * 7 chars for "</span>" */
  322. *bytes = 1000 + cv->height * (7 + cv->width * (47 + 83 + 9 + 7));
  323. cur = data = malloc(*bytes);
  324. /* HTML header */
  325. cur += sprintf(cur, "<html><head>\n");
  326. cur += sprintf(cur, "<title>Generated by libcaca %s</title>\n",
  327. caca_get_version());
  328. cur += sprintf(cur, "</head><body>\n");
  329. cur += sprintf(cur, "<div cellpadding='0' cellspacing='0' style='%s'>\n",
  330. "font-family: monospace, fixed; font-weight: bold;");
  331. for(y = 0; y < cv->height; y++)
  332. {
  333. uint32_t *lineattr = cv->attrs + y * cv->width;
  334. uint32_t *linechar = cv->chars + y * cv->width;
  335. for(x = 0; x < cv->width; x += len)
  336. {
  337. cur += sprintf(cur, "<span style=\"");
  338. if(caca_attr_to_ansi_fg(lineattr[x]) < 0x10)
  339. cur += sprintf(cur, ";color:#%.03x",
  340. caca_attr_to_rgb12_fg(lineattr[x]));
  341. if(caca_attr_to_ansi_bg(lineattr[x]) < 0x10)
  342. cur += sprintf(cur, ";background-color:#%.03x",
  343. caca_attr_to_rgb12_bg(lineattr[x]));
  344. if(lineattr[x] & CACA_BOLD)
  345. cur += sprintf(cur, ";font-weight:bold");
  346. if(lineattr[x] & CACA_ITALICS)
  347. cur += sprintf(cur, ";font-style:italic");
  348. if(lineattr[x] & CACA_UNDERLINE)
  349. cur += sprintf(cur, ";text-decoration:underline");
  350. if(lineattr[x] & CACA_BLINK)
  351. cur += sprintf(cur, ";text-decoration:blink");
  352. cur += sprintf(cur, "\">");
  353. for(len = 0;
  354. x + len < cv->width && lineattr[x + len] == lineattr[x];
  355. len++)
  356. {
  357. if(linechar[x + len] == CACA_MAGIC_FULLWIDTH)
  358. ;
  359. else if(linechar[x + len] <= 0x00000020)
  360. cur += sprintf(cur, "&nbsp;");
  361. else if(linechar[x + len] < 0x00000080)
  362. cur += sprintf(cur, "%c", (uint8_t)linechar[x + len]);
  363. else
  364. cur += sprintf(cur, "&#%i;",
  365. (unsigned int)linechar[x + len]);
  366. }
  367. cur += sprintf(cur, "</span>");
  368. }
  369. /* New line */
  370. cur += sprintf(cur, "<br />\n");
  371. }
  372. cur += sprintf(cur, "</div></body></html>\n");
  373. /* Crop to really used size */
  374. debug("html export: alloc %lu bytes, realloc %lu",
  375. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  376. *bytes = (uintptr_t)(cur - data);
  377. data = realloc(data, *bytes);
  378. return data;
  379. }
  380. /* Export an HTML3 document. This function is way bigger than export_html(),
  381. * but permits viewing in old browsers (or limited ones such as links). It
  382. * will not work under gecko (mozilla rendering engine) unless you set a
  383. * correct header. */
  384. static void *export_html3(caca_canvas_t const *cv, size_t *bytes)
  385. {
  386. char *data, *cur;
  387. int x, y, len;
  388. int maxcols;
  389. /* The HTML table markup: less than 1000 bytes
  390. * A line: 10 chars for "<tr></tr>\n"
  391. * A glyph: 40 chars for "<td bgcolor=#xxxxxx><font color=#xxxxxx>"
  392. * up to 36 chars for "<b><i><u><blink></blink></u></i></b>"
  393. * up to 48 chars for "&#xxxxxx;", or "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" (\t); far less for pure ASCII
  394. * 12 chars for "</font></td>" */
  395. *bytes = 1000 + cv->height * (10 + cv->width * (40 + 36 + 48 + 12));
  396. cur = data = malloc(*bytes);
  397. /* Table */
  398. maxcols = 0;
  399. for(y = 0; y < cv->height; y++)
  400. {
  401. uint32_t *linechar = cv->chars + y * cv->width;
  402. int cols = 0;
  403. for(x = 0; x < cv->width; x++)
  404. {
  405. if(linechar[x] == 0x00000009)
  406. while((cols + 1) % 8)
  407. cols ++;
  408. cols ++;
  409. }
  410. if (cols > maxcols)
  411. maxcols = cols;
  412. }
  413. cur += sprintf(cur, "<table cols='%d' cellpadding='0' cellspacing='0'>\n",
  414. maxcols);
  415. for(y = 0; y < cv->height; y++)
  416. {
  417. uint32_t *lineattr = cv->attrs + y * cv->width;
  418. uint32_t *linechar = cv->chars + y * cv->width;
  419. int taboff = 0;
  420. cur += sprintf(cur, "<tr>");
  421. for(x = 0; x < cv->width; x += len)
  422. {
  423. int i, needfont;
  424. int thistab = 0;
  425. /* Use colspan option to factor cells with same attributes
  426. * (see below) */
  427. len = 1;
  428. while((x + len < cv->width) && (lineattr[x + len] == lineattr[x]))
  429. len++;
  430. for(i = 0; i < len; i++)
  431. if(linechar[x + i] == 0x00000009)
  432. while((x + i + taboff + thistab + 1) % 8)
  433. thistab ++;
  434. cur += sprintf(cur, "<td");
  435. if(caca_attr_to_ansi_fg(lineattr[x]) < 0x10)
  436. cur += sprintf(cur, " bgcolor=#%.06lx", (unsigned long int)
  437. _caca_attr_to_rgb24bg(lineattr[x]));
  438. if((len + thistab) > 1)
  439. cur += sprintf(cur, " colspan=%d", len + thistab);
  440. cur += sprintf(cur, ">");
  441. needfont = caca_attr_to_ansi_bg(lineattr[x]) < 0x10;
  442. if(needfont)
  443. cur += sprintf(cur, "<font color=#%.06lx>", (unsigned long int)
  444. _caca_attr_to_rgb24fg(lineattr[x]));
  445. if(lineattr[x] & CACA_BOLD)
  446. cur += sprintf(cur, "<b>");
  447. if(lineattr[x] & CACA_ITALICS)
  448. cur += sprintf(cur, "<i>");
  449. if(lineattr[x] & CACA_UNDERLINE)
  450. cur += sprintf(cur, "<u>");
  451. if(lineattr[x] & CACA_BLINK)
  452. cur += sprintf(cur, "<blink>");
  453. for(i = 0; i < len; i++)
  454. {
  455. if(linechar[x + i] == CACA_MAGIC_FULLWIDTH)
  456. ;
  457. else if(linechar[x + i] <= 0x00000020)
  458. {
  459. if(linechar[x + i] == 0x00000009)
  460. {
  461. while((x + i + taboff + 1) % 8)
  462. {
  463. cur += sprintf(cur, "&nbsp;");
  464. taboff ++;
  465. }
  466. }
  467. cur += sprintf(cur, "&nbsp;");
  468. }
  469. else if(linechar[x + i] < 0x00000080)
  470. cur += sprintf(cur, "%c", (uint8_t)linechar[x + i]);
  471. else
  472. cur += sprintf(cur, "&#%i;", (unsigned int)linechar[x + i]);
  473. }
  474. if(lineattr[x] & CACA_BLINK)
  475. cur += sprintf(cur, "</blink>");
  476. if(lineattr[x] & CACA_UNDERLINE)
  477. cur += sprintf(cur, "</u>");
  478. if(lineattr[x] & CACA_ITALICS)
  479. cur += sprintf(cur, "</i>");
  480. if(lineattr[x] & CACA_BOLD)
  481. cur += sprintf(cur, "</b>");
  482. if(needfont)
  483. cur += sprintf(cur, "</font>");
  484. cur += sprintf(cur, "</td>");
  485. }
  486. cur += sprintf(cur, "</tr>\n");
  487. }
  488. /* Footer */
  489. cur += sprintf(cur, "</table>\n");
  490. /* Crop to really used size */
  491. debug("html3 export: alloc %lu bytes, realloc %lu",
  492. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  493. *bytes = (uintptr_t)(cur - data);
  494. data = realloc(data, *bytes);
  495. return data;
  496. }
  497. static void *export_bbfr(caca_canvas_t const *cv, size_t *bytes)
  498. {
  499. char *data, *cur;
  500. int x, y, len;
  501. /* The font markup: less than 100 bytes
  502. * A line: 1 char for "\n"
  503. * A glyph: 22 chars for "[f=#xxxxxx][c=#xxxxxx]"
  504. * up to 21 chars for "[g][i][s][/s][/i][/g]"
  505. * up to 6 chars for the UTF-8 glyph
  506. * 8 chars for "[/c][/f]" */
  507. *bytes = 100 + cv->height * (1 + cv->width * (22 + 21 + 6 + 8));
  508. cur = data = malloc(*bytes);
  509. /* Table */
  510. cur += sprintf(cur, "[font=Courier New]");
  511. for(y = 0; y < cv->height; y++)
  512. {
  513. uint32_t *lineattr = cv->attrs + y * cv->width;
  514. uint32_t *linechar = cv->chars + y * cv->width;
  515. for(x = 0; x < cv->width; x += len)
  516. {
  517. int i, needback, needfront;
  518. /* Use colspan option to factor cells with same attributes
  519. * (see below) */
  520. len = 1;
  521. if(linechar[x] == ' ')
  522. while(x + len < cv->width && lineattr[x + len] == lineattr[x]
  523. && linechar[x] == ' ')
  524. len++;
  525. else
  526. while(x + len < cv->width && lineattr[x + len] == lineattr[x]
  527. && linechar[x] != ' ')
  528. len++;
  529. needback = caca_attr_to_ansi_bg(lineattr[x]) < 0x10;
  530. needfront = caca_attr_to_ansi_fg(lineattr[x]) < 0x10;
  531. if(needback)
  532. cur += sprintf(cur, "[f=#%.06lx]", (unsigned long int)
  533. _caca_attr_to_rgb24bg(lineattr[x]));
  534. if(linechar[x] == ' ')
  535. cur += sprintf(cur, "[c=#%.06lx]", (unsigned long int)
  536. _caca_attr_to_rgb24bg(lineattr[x]));
  537. else if(needfront)
  538. cur += sprintf(cur, "[c=#%.06lx]", (unsigned long int)
  539. _caca_attr_to_rgb24fg(lineattr[x]));
  540. if(lineattr[x] & CACA_BOLD)
  541. cur += sprintf(cur, "[g]");
  542. if(lineattr[x] & CACA_ITALICS)
  543. cur += sprintf(cur, "[i]");
  544. if(lineattr[x] & CACA_UNDERLINE)
  545. cur += sprintf(cur, "[s]");
  546. if(lineattr[x] & CACA_BLINK)
  547. ; /* FIXME */
  548. for(i = 0; i < len; i++)
  549. {
  550. if(linechar[x + i] == CACA_MAGIC_FULLWIDTH)
  551. ;
  552. else if(linechar[x + i] == ' ')
  553. *cur++ = '_';
  554. else
  555. cur += caca_utf32_to_utf8(cur, linechar[x + i]);
  556. }
  557. if(lineattr[x] & CACA_BLINK)
  558. ; /* FIXME */
  559. if(lineattr[x] & CACA_UNDERLINE)
  560. cur += sprintf(cur, "[/s]");
  561. if(lineattr[x] & CACA_ITALICS)
  562. cur += sprintf(cur, "[/i]");
  563. if(lineattr[x] & CACA_BOLD)
  564. cur += sprintf(cur, "[/g]");
  565. if(linechar[x] == ' ' || needfront)
  566. cur += sprintf(cur, "[/c]");
  567. if(needback)
  568. cur += sprintf(cur, "[/f]");
  569. }
  570. cur += sprintf(cur, "\n");
  571. }
  572. /* Footer */
  573. cur += sprintf(cur, "[/font]\n");
  574. /* Crop to really used size */
  575. debug("bbfr export: alloc %lu bytes, realloc %lu",
  576. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  577. *bytes = (uintptr_t)(cur - data);
  578. data = realloc(data, *bytes);
  579. return data;
  580. }
  581. /* Export a text file with IRC colours */
  582. static void *export_irc(caca_canvas_t const *cv, size_t *bytes)
  583. {
  584. static uint8_t const palette[] =
  585. {
  586. 1, 2, 3, 10, 5, 6, 7, 15, /* Dark */
  587. 14, 12, 9, 11, 4, 13, 8, 0, /* Light */
  588. };
  589. char *data, *cur;
  590. int x, y;
  591. /* 14 bytes assumed for max length per pixel. Worst case scenario:
  592. * ^Cxx,yy 6 bytes
  593. * ^B^B 2 bytes
  594. * ch 6 bytes
  595. * 3 bytes for max length per line. Worst case scenario:
  596. * <spc> 1 byte (for empty lines)
  597. * \r\n 2 bytes
  598. * In real life, the average bytes per pixel value will be around 5.
  599. */
  600. *bytes = 2 + cv->height * (3 + cv->width * 14);
  601. cur = data = malloc(*bytes);
  602. for(y = 0; y < cv->height; y++)
  603. {
  604. uint32_t *lineattr = cv->attrs + y * cv->width;
  605. uint32_t *linechar = cv->chars + y * cv->width;
  606. uint8_t prevfg = 0x10;
  607. uint8_t prevbg = 0x10;
  608. for(x = 0; x < cv->width; x++)
  609. {
  610. uint32_t attr = lineattr[x];
  611. uint32_t ch = linechar[x];
  612. uint8_t ansifg, ansibg, fg, bg;
  613. if(ch == CACA_MAGIC_FULLWIDTH)
  614. continue;
  615. ansifg = caca_attr_to_ansi_fg(attr);
  616. ansibg = caca_attr_to_ansi_bg(attr);
  617. fg = ansifg < 0x10 ? palette[ansifg] : 0x10;
  618. bg = ansibg < 0x10 ? palette[ansibg] : 0x10;
  619. /* TODO: optimise series of same fg / same bg
  620. * don't change fg value if ch == ' '
  621. * make sure the \x03,%d trick works everywhere */
  622. if(bg != prevbg || fg != prevfg)
  623. {
  624. int need_escape = 0;
  625. if(bg == 0x10)
  626. {
  627. if(fg == 0x10)
  628. cur += sprintf(cur, "\x0f");
  629. else
  630. {
  631. if(prevbg == 0x10)
  632. cur += sprintf(cur, "\x03%d", fg);
  633. else
  634. cur += sprintf(cur, "\x0f\x03%d", fg);
  635. if(ch == (uint32_t)',')
  636. need_escape = 1;
  637. }
  638. }
  639. else
  640. {
  641. if(fg == 0x10)
  642. cur += sprintf(cur, "\x0f\x03,%d", bg);
  643. else
  644. cur += sprintf(cur, "\x03%d,%d", fg, bg);
  645. }
  646. if(ch >= (uint32_t)'0' && ch <= (uint32_t)'9')
  647. need_escape = 1;
  648. if(need_escape)
  649. cur += sprintf(cur, "\x02\x02");
  650. }
  651. cur += caca_utf32_to_utf8(cur, ch);
  652. prevfg = fg;
  653. prevbg = bg;
  654. }
  655. /* TODO: do the same the day we optimise whole lines above */
  656. if(!cv->width)
  657. *cur++ = ' ';
  658. *cur++ = '\r';
  659. *cur++ = '\n';
  660. }
  661. /* Crop to really used size */
  662. debug("IRC export: alloc %lu bytes, realloc %lu",
  663. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  664. *bytes = (uintptr_t)(cur - data);
  665. data = realloc(data, *bytes);
  666. return data;
  667. }
  668. /* Export a PostScript document. */
  669. static void *export_ps(caca_canvas_t const *cv, size_t *bytes)
  670. {
  671. static char const *ps_header =
  672. "%!\n"
  673. "%% libcaca PDF export\n"
  674. "%%LanguageLevel: 2\n"
  675. "%%Pages: 1\n"
  676. "%%DocumentData: Clean7Bit\n"
  677. "/csquare {\n"
  678. " newpath\n"
  679. " 0 0 moveto\n"
  680. " 0 1 rlineto\n"
  681. " 1 0 rlineto\n"
  682. " 0 -1 rlineto\n"
  683. " closepath\n"
  684. " setrgbcolor\n"
  685. " fill\n"
  686. "} def\n"
  687. "/S {\n"
  688. " Show\n"
  689. "} bind def\n"
  690. "/Courier-Bold findfont\n"
  691. "8 scalefont\n"
  692. "setfont\n"
  693. "gsave\n"
  694. "6 10 scale\n";
  695. char *data, *cur;
  696. int x, y;
  697. /* 200 is arbitrary but should be ok */
  698. *bytes = strlen(ps_header) + 100 + cv->height * (32 + cv->width * 200);
  699. cur = data = malloc(*bytes);
  700. /* Header */
  701. cur += sprintf(cur, "%s", ps_header);
  702. cur += sprintf(cur, "0 %d translate\n", cv->height);
  703. /* Background, drawn using csquare macro defined in header */
  704. for(y = cv->height; y--; )
  705. {
  706. uint32_t *lineattr = cv->attrs + y * cv->width;
  707. for(x = 0; x < cv->width; x++)
  708. {
  709. uint8_t argb[8];
  710. caca_attr_to_argb64(*lineattr++, argb);
  711. cur += sprintf(cur, "1 0 translate\n %f %f %f csquare\n",
  712. (float)argb[1] * (1.0 / 0xf),
  713. (float)argb[2] * (1.0 / 0xf),
  714. (float)argb[3] * (1.0 / 0xf));
  715. }
  716. /* Return to beginning of the line, and jump to the next one */
  717. cur += sprintf(cur, "-%d 1 translate\n", cv->width);
  718. }
  719. cur += sprintf(cur, "grestore\n"); /* Restore transformation matrix */
  720. cur += sprintf(cur, "0 %d translate\n", cv->height*10);
  721. for(y = cv->height; y--; )
  722. {
  723. uint32_t *lineattr = cv->attrs + (cv->height - y - 1) * cv->width;
  724. uint32_t *linechar = cv->chars + (cv->height - y - 1) * cv->width;
  725. for(x = 0; x < cv->width; x++)
  726. {
  727. uint8_t argb[8];
  728. uint32_t ch = *linechar++;
  729. caca_attr_to_argb64(*lineattr++, argb);
  730. cur += sprintf(cur, "newpath\n");
  731. cur += sprintf(cur, "%d %d moveto\n", (x + 1) * 6, y * 10 + 2);
  732. cur += sprintf(cur, "%f %f %f setrgbcolor\n",
  733. (float)argb[5] * (1.0 / 0xf),
  734. (float)argb[6] * (1.0 / 0xf),
  735. (float)argb[7] * (1.0 / 0xf));
  736. if(ch < 0x00000020)
  737. cur += sprintf(cur, "(?) show\n");
  738. else if(ch >= 0x00000080)
  739. cur += sprintf(cur, "(?) show\n");
  740. else switch((uint8_t)(ch & 0x7f))
  741. {
  742. case '\\':
  743. case '(':
  744. case ')':
  745. cur += sprintf(cur, "(\\%c) show\n", (uint8_t)ch);
  746. break;
  747. default:
  748. cur += sprintf(cur, "(%c) show\n", (uint8_t)ch);
  749. break;
  750. }
  751. }
  752. }
  753. cur += sprintf(cur, "showpage\n");
  754. /* Crop to really used size */
  755. debug("PS export: alloc %lu bytes, realloc %lu",
  756. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  757. *bytes = (uintptr_t)(cur - data);
  758. data = realloc(data, *bytes);
  759. return data;
  760. }
  761. /* Export an SVG vector image */
  762. static void *export_svg(caca_canvas_t const *cv, size_t *bytes)
  763. {
  764. static char const svg_header[] =
  765. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
  766. "<svg width=\"%d\" height=\"%d\" viewBox=\"0 0 %d %d\""
  767. " xmlns=\"http://www.w3.org/2000/svg\""
  768. " xmlns:xlink=\"http://www.w3.org/1999/xlink\""
  769. " xml:space=\"preserve\" version=\"1.1\" baseProfile=\"full\">\n";
  770. char *data, *cur;
  771. int x, y;
  772. /* 200 is arbitrary but should be ok */
  773. *bytes = strlen(svg_header) + 128 + cv->width * cv->height * 200;
  774. cur = data = malloc(*bytes);
  775. /* Header */
  776. cur += sprintf(cur, svg_header, cv->width * 6, cv->height * 10,
  777. cv->width * 6, cv->height * 10);
  778. cur += sprintf(cur, " <g id=\"mainlayer\" font-size=\"10\""
  779. " style=\"font-family: monospace\">\n");
  780. /* Background */
  781. for(y = 0; y < cv->height; y++)
  782. {
  783. uint32_t *lineattr = cv->attrs + y * cv->width;
  784. for(x = 0; x < cv->width; x++)
  785. {
  786. cur += sprintf(cur, "<rect style=\"fill:#%.03x\" x=\"%d\" y=\"%d\""
  787. " width=\"6\" height=\"10\"/>\n",
  788. caca_attr_to_rgb12_bg(*lineattr++),
  789. x * 6, y * 10);
  790. }
  791. }
  792. /* Text */
  793. for(y = 0; y < cv->height; y++)
  794. {
  795. uint32_t *lineattr = cv->attrs + y * cv->width;
  796. uint32_t *linechar = cv->chars + y * cv->width;
  797. for(x = 0; x < cv->width; x++)
  798. {
  799. uint32_t ch = *linechar++;
  800. if(ch == ' ' || ch == CACA_MAGIC_FULLWIDTH)
  801. {
  802. lineattr++;
  803. continue;
  804. }
  805. cur += sprintf(cur, "<text style=\"fill:#%.03x\" "
  806. "x=\"%d\" y=\"%d\">",
  807. caca_attr_to_rgb12_fg(*lineattr++),
  808. x * 6, (y * 10) + 8);
  809. if(ch < 0x00000020)
  810. *cur++ = '?';
  811. else if(ch > 0x0000007f)
  812. cur += caca_utf32_to_utf8(cur, ch);
  813. else switch((uint8_t)ch)
  814. {
  815. case '>': cur += sprintf(cur, "&gt;"); break;
  816. case '<': cur += sprintf(cur, "&lt;"); break;
  817. case '&': cur += sprintf(cur, "&amp;"); break;
  818. default: *cur++ = ch; break;
  819. }
  820. cur += sprintf(cur, "</text>\n");
  821. }
  822. }
  823. cur += sprintf(cur, " </g>\n");
  824. cur += sprintf(cur, "</svg>\n");
  825. /* Crop to really used size */
  826. debug("SVG export: alloc %lu bytes, realloc %lu",
  827. (unsigned long int)*bytes, (unsigned long int)(cur - data));
  828. *bytes = (uintptr_t)(cur - data);
  829. data = realloc(data, *bytes);
  830. return data;
  831. }
  832. /* Export a TGA image */
  833. static void *export_tga(caca_canvas_t const *cv, size_t *bytes)
  834. {
  835. char const * const *fontlist;
  836. char *data, *cur;
  837. caca_font_t *f;
  838. int i, w, h;
  839. fontlist = caca_get_font_list();
  840. if(!fontlist[0])
  841. {
  842. seterrno(EINVAL);
  843. return NULL;
  844. }
  845. f = caca_load_font(fontlist[0], 0);
  846. w = caca_get_canvas_width(cv) * caca_get_font_width(f);
  847. h = caca_get_canvas_height(cv) * caca_get_font_height(f);
  848. *bytes = w * h * 4 + 18; /* 32 bpp + 18 bytes for the header */
  849. cur = data = malloc(*bytes);
  850. /* ID Length */
  851. cur += sprintf(cur, "%c", 0);
  852. /* Color Map Type: no colormap */
  853. cur += sprintf(cur, "%c", 0);
  854. /* Image Type: uncompressed truecolor */
  855. cur += sprintf(cur, "%c", 2);
  856. /* Color Map Specification: no color map */
  857. memset(cur, 0, 5); cur += 5;
  858. /* Image Specification */
  859. cur += sprintf(cur, "%c%c", 0, 0); /* X Origin */
  860. cur += sprintf(cur, "%c%c", 0, 0); /* Y Origin */
  861. cur += sprintf(cur, "%c%c", w & 0xff, w >> 8); /* Width */
  862. cur += sprintf(cur, "%c%c", h & 0xff, h >> 8); /* Height */
  863. cur += sprintf(cur, "%c", 32); /* Pixel Depth */
  864. cur += sprintf(cur, "%c", 40); /* Image Descriptor */
  865. /* Image ID: no ID */
  866. /* Color Map Data: no colormap */
  867. /* Image Data */
  868. caca_render_canvas(cv, f, cur, w, h, 4 * w);
  869. /* Swap bytes. What a waste of time. */
  870. for(i = 0; i < w * h * 4; i += 4)
  871. {
  872. char c;
  873. c = cur[i]; cur[i] = cur[i + 3]; cur[i + 3] = c;
  874. c = cur[i + 1]; cur[i + 1] = cur[i + 2]; cur[i + 2] = c;
  875. }
  876. caca_free_font(f);
  877. return data;
  878. }
  879. /*
  880. * XXX: The following functions are aliases.
  881. */
  882. void *cucul_export_memory(cucul_canvas_t const *, char const *,
  883. size_t *) CACA_ALIAS(caca_export_memory);
  884. char const * const * cucul_get_export_list(void)
  885. CACA_ALIAS(caca_get_export_list);