dump-emoji.cc 8.8 KB
Newer Older
1 2
/*
 * Copyright © 2018  Ebrahim Byagowi
3
 * Copyright © 2018  Khaled Hosny
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 */

26
#include "hb-static.cc"
27
#include "hb-ot-color-cbdt-table.hh"
28 29
#include "hb-ot-color-colr-table.hh"
#include "hb-ot-color-cpal-table.hh"
30 31 32
#include "hb-ot-color-sbix-table.hh"
#include "hb-ot-color-svg-table.hh"

33 34 35 36 37 38 39 40 41 42
#include "hb-ft.h"

#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H

#include <cairo.h>
#include <cairo-ft.h>
#include <cairo-svg.h>

43 44 45 46 47 48
#ifdef HAVE_GLIB
#include <glib.h>
#endif
#include <stdlib.h>
#include <stdio.h>

E
Ebrahim Byagowi 已提交
49 50 51
static void
cbdt_callback (const uint8_t* data, unsigned int length,
	       unsigned int group, unsigned int gid)
52
{
53 54 55
  char output_path[255];
  sprintf (output_path, "out/cbdt-%d-%d.png", group, gid);
  FILE *f = fopen (output_path, "wb");
56 57 58 59
  fwrite (data, 1, length, f);
  fclose (f);
}

E
Ebrahim Byagowi 已提交
60 61 62
static void
sbix_callback (const uint8_t* data, unsigned int length,
	       unsigned int group, unsigned int gid)
63
{
64 65 66
  char output_path[255];
  sprintf (output_path, "out/sbix-%d-%d.png", group, gid);
  FILE *f = fopen (output_path, "wb");
67 68 69 70
  fwrite (data, 1, length, f);
  fclose (f);
}

E
Ebrahim Byagowi 已提交
71
static void
E
Ebrahim Byagowi 已提交
72
svg_dump (hb_face_t *face)
73
{
E
Ebrahim Byagowi 已提交
74
  unsigned glyph_count = hb_face_get_glyph_count (face);
75

E
Ebrahim Byagowi 已提交
76 77
  for (unsigned int glyph_id = 0; glyph_id < glyph_count; glyph_id++)
  {
78
    hb_blob_t *blob = hb_ot_color_glyph_reference_blob_svg (face, glyph_id);
79

E
Ebrahim Byagowi 已提交
80 81 82 83
    if (hb_blob_get_length (blob) == 0) continue;

    unsigned int length;
    const char *data = hb_blob_get_data (blob, &length);
84 85 86 87 88 89

    char output_path[256];
    sprintf (output_path, "out/svg-%d.svg%s",
	     glyph_id,
	     // append "z" if the content is gzipped, https://stackoverflow.com/a/6059405
	     (length > 2 && (data[0] == '\x1F') && (data[1] == '\x8B')) ? "z" : "");
E
Ebrahim Byagowi 已提交
90 91 92 93 94

    FILE *f = fopen (output_path, "wb");
    fwrite (data, 1, length, f);
    fclose (f);

95
    hb_blob_destroy (blob);
E
Ebrahim Byagowi 已提交
96
  }
97 98
}

E
Ebrahim Byagowi 已提交
99
static void
E
Ebrahim Byagowi 已提交
100
colr_cpal_dump (hb_face_t *face, cairo_font_face_t *cairo_face)
101
{
K
Khaled Hosny 已提交
102 103
  unsigned int upem = hb_face_get_upem (face);

104 105
  unsigned glyph_count = hb_face_get_glyph_count (face);
  for (hb_codepoint_t gid = 0; gid < glyph_count; ++gid)
106
  {
107
    unsigned int num_layers = hb_ot_color_glyph_get_layers (face, gid, 0, nullptr, nullptr);
K
Khaled Hosny 已提交
108 109 110
    if (!num_layers)
      continue;

111
    hb_ot_color_layer_t *layers = (hb_ot_color_layer_t*) malloc (num_layers * sizeof (hb_ot_color_layer_t));
K
Khaled Hosny 已提交
112

113
    hb_ot_color_glyph_get_layers (face, gid, 0, &num_layers, layers);
K
Khaled Hosny 已提交
114
    if (num_layers)
115 116 117 118 119 120 121 122 123 124 125
    {
      // Measure
      cairo_text_extents_t extents;
      {
	cairo_surface_t *surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 1, 1);
	cairo_t *cr = cairo_create (surface);
	cairo_set_font_face (cr, cairo_face);
	cairo_set_font_size (cr, upem);

	cairo_glyph_t *glyphs = (cairo_glyph_t *) calloc (num_layers, sizeof (cairo_glyph_t));
	for (unsigned int j = 0; j < num_layers; ++j)
126
	  glyphs[j].index = layers[j].glyph;
127 128 129 130 131 132 133 134 135 136 137 138 139
	cairo_glyph_extents (cr, glyphs, num_layers, &extents);
	free (glyphs);
	cairo_surface_destroy (surface);
	cairo_destroy (cr);
      }

      // Add a slight margin
      extents.width += extents.width / 10;
      extents.height += extents.height / 10;
      extents.x_bearing -= extents.width / 20;
      extents.y_bearing -= extents.height / 20;

      // Render
140
      unsigned int palette_count = hb_ot_color_palette_get_count (face);
141
      for (unsigned int palette = 0; palette < palette_count; palette++) {
142 143
	char output_path[255];

144
	unsigned int num_colors = hb_ot_color_palette_get_colors (face, palette, 0, nullptr, nullptr);
145 146 147
	if (!num_colors)
	  continue;

148
	hb_color_t *colors = (hb_color_t*) calloc (num_colors, sizeof (hb_color_t));
149
	hb_ot_color_palette_get_colors (face, palette, 0, &num_colors, colors);
150 151
	if (num_colors)
	{
152
	  // If we have more than one palette, use a simpler naming
153
	  if (palette_count == 1)
K
Khaled Hosny 已提交
154 155
	    sprintf (output_path, "out/colr-%d.svg", gid);
	  else
156
	    sprintf (output_path, "out/colr-%d-%d.svg", gid, palette);
K
Khaled Hosny 已提交
157 158 159 160 161 162 163 164

	  cairo_surface_t *surface = cairo_svg_surface_create (output_path, extents.width, extents.height);
	  cairo_t *cr = cairo_create (surface);
	  cairo_set_font_face (cr, cairo_face);
	  cairo_set_font_size (cr, upem);

	  for (unsigned int layer = 0; layer < num_layers; ++layer)
	  {
165
	    hb_color_t color = 0x000000FF;
166 167
	    if (layers[layer].color_index != 0xFFFF)
	      color = colors[layers[layer].color_index];
168
	    cairo_set_source_rgba (cr,
169 170 171 172
				   hb_color_get_red (color) / 255.,
				   hb_color_get_green (color) / 255.,
				   hb_color_get_blue (color) / 255.,
				   hb_color_get_alpha (color) / 255.);
K
Khaled Hosny 已提交
173 174

	    cairo_glyph_t glyph;
175
	    glyph.index = layers[layer].glyph;
K
Khaled Hosny 已提交
176 177 178 179 180 181 182
	    glyph.x = -extents.x_bearing;
	    glyph.y = -extents.y_bearing;
	    cairo_show_glyphs (cr, &glyph, 1);
	  }

	  cairo_surface_destroy (surface);
	  cairo_destroy (cr);
183 184
	}
	free (colors);
185 186
      }
    }
K
Khaled Hosny 已提交
187

188
    free (layers);
189 190 191
  }
}

E
Ebrahim Byagowi 已提交
192 193 194
static void
dump_glyphs (cairo_font_face_t *cairo_face, unsigned int upem,
	     unsigned int num_glyphs)
195 196
{
  // Dump every glyph available on the font
E
minor  
Ebrahim Byagowi 已提交
197
  return; // disabled for now
B
Behdad Esfahbod 已提交
198
  for (unsigned int i = 0; i < num_glyphs; ++i)
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  {
    cairo_text_extents_t extents;
    cairo_glyph_t glyph = {0};
    glyph.index = i;

    // Measure
    {
      cairo_surface_t *surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 1, 1);
      cairo_t *cr = cairo_create (surface);
      cairo_set_font_face (cr, cairo_face);
      cairo_set_font_size (cr, upem);

      cairo_glyph_extents (cr, &glyph, 1, &extents);
      cairo_surface_destroy (surface);
      cairo_destroy (cr);
    }

    // Add a slight margin
    extents.width += extents.width / 10;
    extents.height += extents.height / 10;
    extents.x_bearing -= extents.width / 20;
    extents.y_bearing -= extents.height / 20;

    // Render
    {
      char output_path[255];
      sprintf (output_path, "out/%d.svg", i);
      cairo_surface_t *surface = cairo_svg_surface_create (output_path, extents.width, extents.height);
      cairo_t *cr = cairo_create (surface);
      cairo_set_font_face (cr, cairo_face);
      cairo_set_font_size (cr, upem);
      glyph.x = -extents.x_bearing;
      glyph.y = -extents.y_bearing;
      cairo_show_glyphs (cr, &glyph, 1);
      cairo_surface_destroy (surface);
      cairo_destroy (cr);
    }
  }
}

E
Ebrahim Byagowi 已提交
239 240
int
main (int argc, char **argv)
241 242
{
  if (argc != 2) {
243
    fprintf (stderr, "usage: %s font-file.ttf\n"
E
Ebrahim Byagowi 已提交
244 245
		     "run it like `rm -rf out && mkdir out && %s font-file.ttf`\n",
		     argv[0], argv[0]);
246 247 248
    exit (1);
  }

249 250 251 252 253 254 255 256 257 258 259

  FILE *font_name_file = fopen ("out/_font_name_file.txt", "r");
  if (font_name_file != nullptr)
  {
    fprintf (stderr, "Purge or move ./out folder in order to run a new dump\n");
    exit (1);
  }

  font_name_file = fopen ("out/_font_name_file.txt", "w");
  if (font_name_file == nullptr)
  {
K
Khaled Hosny 已提交
260
    fprintf (stderr, "./out is not accessible as a folder, create it please\n");
261 262
    exit (1);
  }
E
Ebrahim Byagowi 已提交
263
  fwrite (argv[1], 1, strlen (argv[1]), font_name_file);
264 265
  fclose (font_name_file);

266
  hb_blob_t *blob = hb_blob_create_from_file (argv[1]);
267 268 269 270 271 272 273 274 275 276 277 278 279
  hb_face_t *face = hb_face_create (blob, 0);
  hb_font_t *font = hb_font_create (face);

  OT::CBDT::accelerator_t cbdt;
  cbdt.init (face);
  cbdt.dump (cbdt_callback);
  cbdt.fini ();

  OT::sbix::accelerator_t sbix;
  sbix.init (face);
  sbix.dump (sbix_callback);
  sbix.fini ();

E
Ebrahim Byagowi 已提交
280 281
  if (hb_ot_color_has_svg (face))
    svg_dump (face);
282

283 284 285 286 287 288 289 290
  cairo_font_face_t *cairo_face;
  {
    FT_Library library;
    FT_Init_FreeType (&library);
    FT_Face ftface;
    FT_New_Face (library, argv[1], 0, &ftface);
    cairo_face = cairo_ft_font_face_create_for_ft_face (ftface, 0);
  }
E
Ebrahim Byagowi 已提交
291 292
  if (hb_ot_color_has_layers (face) && hb_ot_color_has_palettes (face))
    colr_cpal_dump (face, cairo_face);
293

294 295 296 297
  unsigned int num_glyphs = hb_face_get_glyph_count (face);
  unsigned int upem = hb_face_get_upem (face);
  dump_glyphs (cairo_face, upem, num_glyphs);

298 299 300 301 302 303
  hb_font_destroy (font);
  hb_face_destroy (face);
  hb_blob_destroy (blob);

  return 0;
}