Class: Fontisan::Converters::OutlineConverter
- Inherits:
-
Object
- Object
- Fontisan::Converters::OutlineConverter
- Includes:
- ConversionStrategy
- Defined in:
- lib/fontisan/converters/outline_converter.rb
Overview
Strategy for converting between TTF and OTF outline formats
[‘OutlineConverter`](lib/fontisan/converters/outline_converter.rb) handles conversion between TrueType (glyf/loca) and CFF outline formats. This involves:
-
Extracting glyph outlines from source format
-
Converting to universal [‘Outline`](lib/fontisan/models/outline.rb) model
-
Building target format tables using specialized builders
-
Updating related tables (maxp, head)
-
Preserving all other font tables
-
Optionally preserving rendering hints
**Conversion Details:**
TTF → OTF:
-
Extract glyphs from glyf/loca tables
-
Convert TrueType quadratic curves to universal format
-
Build complete CFF table with CharStrings INDEX
-
Remove glyf/loca tables
-
Update maxp to version 0.5 (CFF format)
-
Update head table (clear indexToLocFormat)
OTF → TTF:
-
Extract CharStrings from CFF table
-
Convert CFF cubic curves to universal format
-
Build glyf and loca tables
-
Remove CFF table
-
Update maxp to version 1.0 (TrueType format)
-
Update head table (set indexToLocFormat)
Constant Summary collapse
- SUPPORTED_FORMATS =
Supported outline formats
%i[ttf otf cff2].freeze
Instance Attribute Summary collapse
-
#font ⇒ TrueTypeFont, OpenTypeFont
readonly
Source font.
Instance Method Summary collapse
-
#build_cff_table(outlines, font, hints_per_glyph) ⇒ String
Build CFF table from outlines.
-
#build_glyf_loca_tables(outlines, hints_per_glyph) ⇒ Array<String, String, Integer>
Build glyf and loca tables from outlines.
-
#convert(font, options = {}) ⇒ Hash<String, String>
Convert font between TTF and OTF formats.
-
#convert_otf_to_ttf(font) ⇒ Hash<String, String>
Convert OpenType/CFF font to TrueType.
-
#convert_ttf_to_otf(font, options = {}) ⇒ Hash<String, String>
Convert TrueType font to OpenType/CFF.
-
#convert_variations(font, target_format) ⇒ Hash?
Convert variation data during outline conversion.
-
#copy_tables(font, exclude_tags = []) ⇒ Hash<String, String>
Copy non-outline tables from source to target.
-
#detect_format(font) ⇒ Symbol
Detect font format from tables.
-
#detect_target_format(font) ⇒ Symbol
Detect target format as opposite of source.
-
#extract_cff_hints(font) ⇒ Hash<Integer, Array<Hint>>
Extract hints from CFF font.
-
#extract_cff_outlines(font) ⇒ Array<Outline>
Extract outlines from CFF font.
-
#extract_font_name(font) ⇒ String
Extract font name from name table.
-
#extract_ttf_hints(font) ⇒ Hash<Integer, Array<Hint>>
Extract hints from TrueType font.
-
#extract_ttf_outlines(font) ⇒ Array<Outline>
Extract outlines from TrueType font.
-
#generate_static_instance(font, source_format, target_format) ⇒ Hash<String, String>
Generate static instance from variable font.
-
#initialize ⇒ OutlineConverter
constructor
Initialize converter.
-
#optimize_charstrings(charstrings) ⇒ Array<Array<String>, Array<String>>
Optimize CharStrings using subroutine extraction.
-
#otf_to_ttf ⇒ Hash<String, String>
Convert OpenType/CFF font to TrueType.
-
#supported_conversions ⇒ Array<Array<Symbol>>
Get supported conversions.
-
#ttf_to_otf ⇒ Hash<String, String>
Convert TrueType font to OpenType/CFF.
-
#update_head_for_cff(font) ⇒ String
Update head table for CFF format.
-
#update_head_for_truetype(font, loca_format) ⇒ String
Update head table for TrueType format.
-
#update_maxp_for_cff(_font, num_glyphs) ⇒ String
Update maxp table for CFF format.
-
#update_maxp_for_truetype(font, outlines, _loca_format) ⇒ String
Update maxp table for TrueType format.
-
#validate(font, target_format) ⇒ Boolean
Validate font for conversion.
-
#validate_source_tables(font, format) ⇒ Object
Validate source font has required tables.
-
#variable_font?(font) ⇒ Boolean
Check if font is a variable font.
Methods included from ConversionStrategy
Constructor Details
#initialize ⇒ OutlineConverter
Initialize converter
78 79 80 |
# File 'lib/fontisan/converters/outline_converter.rb', line 78 def initialize @font = nil end |
Instance Attribute Details
#font ⇒ TrueTypeFont, OpenTypeFont (readonly)
Returns Source font.
75 76 77 |
# File 'lib/fontisan/converters/outline_converter.rb', line 75 def font @font end |
Instance Method Details
#build_cff_table(outlines, font, hints_per_glyph) ⇒ String
Build CFF table from outlines
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
# File 'lib/fontisan/converters/outline_converter.rb', line 328 def build_cff_table(outlines, font, hints_per_glyph) # Build CharStrings INDEX from outlines begin charstrings = outlines.map do |outline| builder = Tables::Cff::CharStringBuilder.new if outline.empty? builder.build_empty else builder.build(outline) end end rescue StandardError => e raise Fontisan::Error, "Failed to build CharStrings: #{e.}" end # Apply subroutine optimization if enabled local_subrs = [] if @optimize_cff begin charstrings, local_subrs = optimize_charstrings(charstrings) rescue StandardError => e # If optimization fails, fall back to unoptimized CharStrings warn "CFF optimization failed: #{e.}, using unoptimized CharStrings" local_subrs = [] end end # Build font metadata begin font_name = extract_font_name(font) rescue StandardError => e raise Fontisan::Error, "Failed to extract font name: #{e.}" end # Build all INDEXes begin header_size = 4 name_index_data = Tables::Cff::IndexBuilder.build([font_name]) string_index_data = Tables::Cff::IndexBuilder.build([]) # Empty strings global_subr_index_data = Tables::Cff::IndexBuilder.build([]) # Empty global subrs charstrings_index_data = Tables::Cff::IndexBuilder.build(charstrings) local_subrs_index_data = Tables::Cff::IndexBuilder.build(local_subrs) rescue StandardError => e raise Fontisan::Error, "Failed to build CFF indexes: #{e.}" end # Build Private DICT with Subrs offset if we have local subroutines begin private_dict_hash = { default_width_x: 1000, nominal_width_x: 0, } # If we have local subroutines, add Subrs offset # Subrs offset is relative to Private DICT start if local_subrs.any? # Calculate size of Private DICT itself to know where Subrs starts temp_private_dict_data = Tables::Cff::DictBuilder.build(private_dict_hash) subrs_offset = temp_private_dict_data.bytesize # Add Subrs offset to DICT private_dict_hash[:subrs] = subrs_offset end # Build final Private DICT private_dict_data = Tables::Cff::DictBuilder.build(private_dict_hash) private_dict_size = private_dict_data.bytesize rescue StandardError => e raise Fontisan::Error, "Failed to build Private DICT: #{e.}" end # Calculate offsets with iterative refinement begin # Initial pass top_dict_index_start = header_size + name_index_data.bytesize string_index_start = top_dict_index_start + 100 # Approximate global_subr_index_start = string_index_start + string_index_data.bytesize charstrings_offset = global_subr_index_start + global_subr_index_data.bytesize # Build Top DICT top_dict_hash = { charset: 0, encoding: 0, charstrings: charstrings_offset, } top_dict_data = Tables::Cff::DictBuilder.build(top_dict_hash) top_dict_index_data = Tables::Cff::IndexBuilder.build([top_dict_data]) # Recalculate with actual Top DICT size string_index_start = top_dict_index_start + top_dict_index_data.bytesize global_subr_index_start = string_index_start + string_index_data.bytesize charstrings_offset = global_subr_index_start + global_subr_index_data.bytesize private_dict_offset = charstrings_offset + charstrings_index_data.bytesize # Update Top DICT with Private DICT info top_dict_hash = { charset: 0, encoding: 0, charstrings: charstrings_offset, private: [private_dict_size, private_dict_offset], } top_dict_data = Tables::Cff::DictBuilder.build(top_dict_hash) top_dict_index_data = Tables::Cff::IndexBuilder.build([top_dict_data]) # Final recalculation string_index_start = top_dict_index_start + top_dict_index_data.bytesize global_subr_index_start = string_index_start + string_index_data.bytesize charstrings_offset = global_subr_index_start + global_subr_index_data.bytesize private_dict_offset = charstrings_offset + charstrings_index_data.bytesize # Final Top DICT top_dict_hash = { charset: 0, encoding: 0, charstrings: charstrings_offset, private: [private_dict_size, private_dict_offset], } top_dict_data = Tables::Cff::DictBuilder.build(top_dict_hash) top_dict_index_data = Tables::Cff::IndexBuilder.build([top_dict_data]) rescue StandardError => e raise Fontisan::Error, "Failed to calculate CFF table offsets: #{e.}" end # Build CFF Header begin header = [ 1, # major version 0, # minor version 4, # header size 4, # offSize (will be in INDEX) ].pack("C4") rescue StandardError => e raise Fontisan::Error, "Failed to build CFF header: #{e.}" end # Assemble complete CFF table begin header + name_index_data + top_dict_index_data + string_index_data + global_subr_index_data + charstrings_index_data + private_dict_data + local_subrs_index_data rescue StandardError => e raise Fontisan::Error, "Failed to assemble CFF table: #{e.}" end end |
#build_glyf_loca_tables(outlines, hints_per_glyph) ⇒ Array<String, String, Integer>
Build glyf and loca tables from outlines
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/fontisan/converters/outline_converter.rb', line 483 def build_glyf_loca_tables(outlines, hints_per_glyph) glyf_data = "".b offsets = [] # Build each glyph outlines.each do |outline| offsets << glyf_data.bytesize if outline.empty? # Empty glyph - no data next end # Convert outline to TrueType contours contours = outline.to_truetype_contours # Build glyph data builder = Tables::Glyf::GlyphBuilder.new( contours: contours, x_min: outline.bbox[:x_min], y_min: outline.bbox[:y_min], x_max: outline.bbox[:x_max], y_max: outline.bbox[:y_max], ) glyph_data = builder.build glyf_data << glyph_data # Add padding to 4-byte boundary padding = (4 - (glyf_data.bytesize % 4)) % 4 glyf_data << ("\x00" * padding) if padding.positive? end # Add final offset offsets << glyf_data.bytesize # Build loca table # Determine format based on max offset max_offset = offsets.max if max_offset <= 0x1FFFE # Short format (offsets / 2) loca_format = 0 loca_data = offsets.map { |off| off / 2 }.pack("n*") else # Long format loca_format = 1 loca_data = offsets.pack("N*") end [glyf_data, loca_data, loca_format] end |
#convert(font, options = {}) ⇒ Hash<String, String>
Convert font between TTF and OTF formats
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/fontisan/converters/outline_converter.rb', line 93 def convert(font, = {}) @font = font @options = @optimize_cff = .fetch(:optimize_cff, false) @preserve_hints = .fetch(:preserve_hints, false) @preserve_variations = .fetch(:preserve_variations, true) @generate_instance = .fetch(:generate_instance, false) @instance_coordinates = .fetch(:instance_coordinates, {}) target_format = [:target_format] || detect_target_format(font) validate(font, target_format) source_format = detect_format(font) # Check if we should generate a static instance instead if @generate_instance && variable_font?(font) return generate_static_instance(font, source_format, target_format) end case [source_format, target_format] when %i[ttf otf] convert_ttf_to_otf(font, ) when %i[otf ttf] convert_otf_to_ttf(font) when %i[cff2 ttf] # CFF2 to TTF - treat CFF2 similar to OTF for now convert_otf_to_ttf(font) when %i[ttf cff2] # TTF to CFF2 - for variable fonts convert_ttf_to_otf(font, ) else raise Fontisan::Error, "Unsupported conversion: #{source_format} → #{target_format}" end end |
#convert_otf_to_ttf(font) ⇒ Hash<String, String>
Convert OpenType/CFF font to TrueType
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/fontisan/converters/outline_converter.rb', line 163 def convert_otf_to_ttf(font) # Extract all glyphs from CFF table outlines = extract_cff_outlines(font) # Extract hints if preservation is enabled hints_per_glyph = @preserve_hints ? extract_cff_hints(font) : {} # Build glyf and loca tables glyf_data, loca_data, loca_format = build_glyf_loca_tables(outlines, hints_per_glyph) # Copy all tables except CFF tables = copy_tables(font, ["CFF ", "CFF2"]) # Add glyf and loca tables tables["glyf"] = glyf_data tables["loca"] = loca_data # Update maxp table for TrueType tables["maxp"] = update_maxp_for_truetype(font, outlines, loca_format) # Update head table for TrueType tables["head"] = update_head_for_truetype(font, loca_format) tables end |
#convert_ttf_to_otf(font, options = {}) ⇒ Hash<String, String>
Convert TrueType font to OpenType/CFF
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/fontisan/converters/outline_converter.rb', line 134 def convert_ttf_to_otf(font, = {}) # Extract all glyphs from glyf table outlines = extract_ttf_outlines(font) # Extract hints if preservation is enabled hints_per_glyph = @preserve_hints ? extract_ttf_hints(font) : {} # Build CFF table from outlines and hints cff_data = build_cff_table(outlines, font, hints_per_glyph) # Copy all tables except glyf/loca tables = copy_tables(font, %w[glyf loca]) # Add CFF table tables["CFF "] = cff_data # Update maxp table for CFF tables["maxp"] = update_maxp_for_cff(font, outlines.length) # Update head table for CFF tables["head"] = update_head_for_cff(font) tables end |
#convert_variations(font, target_format) ⇒ Hash?
Convert variation data during outline conversion
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 |
# File 'lib/fontisan/converters/outline_converter.rb', line 755 def convert_variations(font, target_format) return nil unless @preserve_variations return nil unless variable_font?(font) fvar = font.table("fvar") return nil unless fvar axes = fvar.axes converter = Variation::Converter.new(font, axes) # Get glyph count maxp = font.table("maxp") return nil unless maxp glyph_count = maxp.num_glyphs # Convert variation data for each glyph variation_data = {} glyph_count.times do |glyph_id| source_format = detect_format(font) data = case [source_format, target_format] when %i[ttf otf], %i[ttf cff2] # gvar → blend converter.gvar_to_blend(glyph_id) when %i[otf ttf], %i[cff2 ttf] # blend → gvar converter.blend_to_gvar(glyph_id) else nil end variation_data[glyph_id] = data if data end variation_data.empty? ? nil : variation_data end |
#copy_tables(font, exclude_tags = []) ⇒ Hash<String, String>
Copy non-outline tables from source to target
540 541 542 543 544 545 546 547 548 549 550 |
# File 'lib/fontisan/converters/outline_converter.rb', line 540 def copy_tables(font, = []) tables = {} font.table_data.each do |tag, data| next if .include?(tag) tables[tag] = data if data end tables end |
#detect_format(font) ⇒ Symbol
Detect font format from tables
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 |
# File 'lib/fontisan/converters/outline_converter.rb', line 798 def detect_format(font) # Check for CFF2 table first (OpenType variable fonts with CFF2 outlines) if font.has_table?("CFF2") :cff2 # Check for CFF table (OpenType/CFF) elsif font.has_table?("CFF ") :otf # Check for glyf table (TrueType) elsif font.has_table?("glyf") :ttf else raise Fontisan::Error, "Cannot detect font format: missing outline tables (CFF2, CFF, or glyf)" end end |
#detect_target_format(font) ⇒ Symbol
Detect target format as opposite of source
818 819 820 821 822 823 824 825 826 827 828 |
# File 'lib/fontisan/converters/outline_converter.rb', line 818 def detect_target_format(font) source = detect_format(font) case source when :ttf :otf when :cff2 :ttf else :ttf end end |
#extract_cff_hints(font) ⇒ Hash<Integer, Array<Hint>>
Extract hints from CFF font
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 |
# File 'lib/fontisan/converters/outline_converter.rb', line 901 def extract_cff_hints(font) hints_per_glyph = {} extractor = Hints::PostScriptHintExtractor.new # Get CFF table cff = font.table("CFF ") return {} unless cff # Get number of glyphs num_glyphs = cff.glyph_count # Extract hints from each CharString num_glyphs.times do |glyph_id| charstring = cff.charstring_for_glyph(glyph_id) next if charstring.nil? hints = extractor.extract(charstring) hints_per_glyph[glyph_id] = hints if hints.any? end hints_per_glyph rescue StandardError => e warn "Failed to extract CFF hints: #{e.}" {} end |
#extract_cff_outlines(font) ⇒ Array<Outline>
Extract outlines from CFF font
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
# File 'lib/fontisan/converters/outline_converter.rb', line 294 def extract_cff_outlines(font) # Get CFF table cff = font.table("CFF ") raise Fontisan::Error, "CFF table not found" unless cff # Get number of glyphs num_glyphs = cff.glyph_count # Extract all glyphs outlines = [] num_glyphs.times do |glyph_id| charstring = cff.charstring_for_glyph(glyph_id) outlines << if charstring.nil? || charstring.path.empty? # Empty glyph Models::Outline.new( glyph_id: glyph_id, commands: [], bbox: { x_min: 0, y_min: 0, x_max: 0, y_max: 0 }, ) else # Convert CharString to outline Models::Outline.from_cff(charstring, glyph_id) end end outlines end |
#extract_font_name(font) ⇒ String
Extract font name from name table
645 646 647 648 649 650 651 652 653 |
# File 'lib/fontisan/converters/outline_converter.rb', line 645 def extract_font_name(font) name_table = font.table("name") if name_table font_name = name_table.english_name(Tables::Name::FAMILY) return font_name.dup.force_encoding("ASCII-8BIT") if font_name end "UnnamedFont" end |
#extract_ttf_hints(font) ⇒ Hash<Integer, Array<Hint>>
Extract hints from TrueType font
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 |
# File 'lib/fontisan/converters/outline_converter.rb', line 869 def extract_ttf_hints(font) hints_per_glyph = {} extractor = Hints::TrueTypeHintExtractor.new # Get required tables head = font.table("head") maxp = font.table("maxp") loca = font.table("loca") glyf = font.table("glyf") # Parse loca with context loca.parse_with_context(head.index_to_loc_format, maxp.num_glyphs) # Extract hints from each glyph maxp.num_glyphs.times do |glyph_id| glyph = glyf.glyph_for(glyph_id, loca, head) next if glyph.nil? || glyph.empty? hints = extractor.extract(glyph) hints_per_glyph[glyph_id] = hints if hints.any? end hints_per_glyph rescue StandardError => e warn "Failed to extract TrueType hints: #{e.}" {} end |
#extract_ttf_outlines(font) ⇒ Array<Outline>
Extract outlines from TrueType font
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/fontisan/converters/outline_converter.rb', line 253 def extract_ttf_outlines(font) # Get required tables head = font.table("head") maxp = font.table("maxp") loca = font.table("loca") glyf = font.table("glyf") # Parse loca with context loca.parse_with_context(head.index_to_loc_format, maxp.num_glyphs) # Create resolver for compound glyphs resolver = Tables::CompoundGlyphResolver.new(glyf, loca, head) # Extract all glyphs outlines = [] maxp.num_glyphs.times do |glyph_id| glyph = glyf.glyph_for(glyph_id, loca, head) outlines << if glyph.nil? || glyph.empty? # Empty glyph - create empty outline Models::Outline.new( glyph_id: glyph_id, commands: [], bbox: { x_min: 0, y_min: 0, x_max: 0, y_max: 0 }, ) elsif glyph.simple? # Convert simple glyph to outline Models::Outline.from_truetype(glyph, glyph_id) else # Compound glyph - resolve to simple outline resolver.resolve(glyph) end end outlines end |
#generate_static_instance(font, source_format, target_format) ⇒ Hash<String, String>
Generate static instance from variable font
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 |
# File 'lib/fontisan/converters/outline_converter.rb', line 722 def generate_static_instance(font, source_format, target_format) # Generate instance at specified coordinates fvar = font.table("fvar") axes = fvar ? fvar.axes : [] generator = Variation::InstanceGenerator.new(font, @instance_coordinates) instance_tables = generator.generate # If target format differs from source, convert outlines if source_format != target_format # Create temporary font with instance tables temp_font = font.class.new temp_font.instance_variable_set(:@table_data, instance_tables) # Convert outline format case [source_format, target_format] when %i[ttf otf] convert_ttf_to_otf(temp_font, @options) when %i[otf ttf], %i[cff2 ttf] convert_otf_to_ttf(temp_font) else instance_tables end else instance_tables end end |
#optimize_charstrings(charstrings) ⇒ Array<Array<String>, Array<String>>
Optimize CharStrings using subroutine extraction
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 |
# File 'lib/fontisan/converters/outline_converter.rb', line 659 def optimize_charstrings(charstrings) # Convert to hash format expected by PatternAnalyzer charstrings_hash = {} charstrings.each_with_index do |cs, index| charstrings_hash[index] = cs end # Analyze patterns analyzer = Optimizers::PatternAnalyzer.new( min_length: 10, stack_aware: true ) patterns = analyzer.analyze(charstrings_hash) # Return original if no patterns found return [charstrings, []] if patterns.empty? # Optimize selection optimizer = Optimizers::SubroutineOptimizer.new(patterns, max_subrs: 65_535) selected_patterns = optimizer.optimize_selection # Optimize ordering selected_patterns = optimizer.optimize_ordering(selected_patterns) # Return original if no patterns selected return [charstrings, []] if selected_patterns.empty? # Build subroutines builder = Optimizers::SubroutineBuilder.new(selected_patterns, type: :local) local_subrs = builder.build # Build subroutine map subroutine_map = {} selected_patterns.each_with_index do |pattern, index| subroutine_map[pattern.bytes] = index end # Rewrite CharStrings rewriter = Optimizers::CharstringRewriter.new(subroutine_map, builder) optimized_charstrings = charstrings.map.with_index do |charstring, glyph_id| # Find patterns for this glyph glyph_patterns = selected_patterns.select { |p| p.glyphs.include?(glyph_id) } if glyph_patterns.empty? charstring else rewriter.rewrite(charstring, glyph_patterns) end end [optimized_charstrings, local_subrs] rescue StandardError => e # If optimization fails for any reason, return original CharStrings warn "Optimization warning: #{e.}" [charstrings, []] end |
#otf_to_ttf ⇒ Hash<String, String>
Convert OpenType/CFF font to TrueType
201 202 203 204 205 |
# File 'lib/fontisan/converters/outline_converter.rb', line 201 def otf_to_ttf raise Fontisan::Error, "No font loaded" unless @font convert_otf_to_ttf(@font) end |
#supported_conversions ⇒ Array<Array<Symbol>>
Get supported conversions
210 211 212 213 214 215 216 217 |
# File 'lib/fontisan/converters/outline_converter.rb', line 210 def supported_conversions [ %i[ttf otf], %i[otf ttf], %i[cff2 ttf], %i[ttf cff2], ] end |
#ttf_to_otf ⇒ Hash<String, String>
Convert TrueType font to OpenType/CFF
192 193 194 195 196 |
# File 'lib/fontisan/converters/outline_converter.rb', line 192 def ttf_to_otf raise Fontisan::Error, "No font loaded" unless @font convert_ttf_to_otf(@font) end |
#update_head_for_cff(font) ⇒ String
Update head table for CFF format
614 615 616 617 618 619 620 621 622 623 624 |
# File 'lib/fontisan/converters/outline_converter.rb', line 614 def update_head_for_cff(font) font.table("head") head_data = font.table_data["head"].dup # For CFF fonts, indexToLocFormat is not relevant # but we'll set it to 0 for consistency # indexToLocFormat is at offset 50 (2 bytes) head_data[50, 2] = [0].pack("n") head_data end |
#update_head_for_truetype(font, loca_format) ⇒ String
Update head table for TrueType format
631 632 633 634 635 636 637 638 639 |
# File 'lib/fontisan/converters/outline_converter.rb', line 631 def update_head_for_truetype(font, loca_format) font.table("head") head_data = font.table_data["head"].dup # Set indexToLocFormat at offset 50 (2 bytes) head_data[50, 2] = [loca_format].pack("n") head_data end |
#update_maxp_for_cff(_font, num_glyphs) ⇒ String
Update maxp table for CFF format
557 558 559 560 561 |
# File 'lib/fontisan/converters/outline_converter.rb', line 557 def update_maxp_for_cff(_font, num_glyphs) # CFF uses maxp version 0.5 (0x00005000) # Structure: version (4 bytes) + numGlyphs (2 bytes) [Tables::Maxp::VERSION_0_5, num_glyphs].pack("Nn") end |
#update_maxp_for_truetype(font, outlines, _loca_format) ⇒ String
Update maxp table for TrueType format
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 |
# File 'lib/fontisan/converters/outline_converter.rb', line 569 def update_maxp_for_truetype(font, outlines, _loca_format) # Get source maxp font.table("maxp") num_glyphs = outlines.length # Calculate statistics from outlines max_points = 0 max_contours = 0 outlines.each do |outline| next if outline.empty? contours = outline.to_truetype_contours max_contours = [max_contours, contours.length].max contours.each do |contour| max_points = [max_points, contour.length].max end end # Build maxp v1.0 table # We'll use conservative defaults for instruction-related fields [ Tables::Maxp::VERSION_1_0, # version num_glyphs, # numGlyphs max_points, # maxPoints max_contours, # maxContours 0, # maxCompositePoints 0, # maxCompositeContours 2, # maxZones 0, # maxTwilightPoints 0, # maxStorage 0, # maxFunctionDefs 0, # maxInstructionDefs 0, # maxStackElements 0, # maxSizeOfInstructions 0, # maxComponentElements 0, # maxComponentDepth ].pack("Nnnnnnnnnnnnnnn") end |
#validate(font, target_format) ⇒ Boolean
Validate font for conversion
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/fontisan/converters/outline_converter.rb', line 226 def validate(font, target_format) raise ArgumentError, "Font cannot be nil" if font.nil? unless font.respond_to?(:tables) raise ArgumentError, "Font must respond to :tables" end unless font.respond_to?(:table) raise ArgumentError, "Font must respond to :table" end source_format = detect_format(font) unless supports?(source_format, target_format) raise Fontisan::Error, "Conversion #{source_format} → #{target_format} not supported" end # Check that source font has required tables validate_source_tables(font, source_format) true end |
#validate_source_tables(font, format) ⇒ Object
Validate source font has required tables
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 |
# File 'lib/fontisan/converters/outline_converter.rb', line 835 def validate_source_tables(font, format) case format when :ttf unless font.has_table?("glyf") && font.has_table?("loca") && font.table("glyf") && font.table("loca") raise Fontisan::MissingTableError, "TrueType font missing required glyf or loca table" end when :cff2 unless font.has_table?("CFF2") && font.table("CFF2") raise Fontisan::MissingTableError, "CFF2 font missing required CFF2 table" end when :otf unless (font.has_table?("CFF ") && font.table("CFF ")) || (font.has_table?("CFF2") && font.table("CFF2")) raise Fontisan::MissingTableError, "OpenType font missing required CFF or CFF2 table" end end # Common required tables %w[head hhea maxp].each do |tag| unless font.table(tag) raise Fontisan::MissingTableError, "Font missing required #{tag} table" end end end |
#variable_font?(font) ⇒ Boolean
Check if font is a variable font
931 932 933 |
# File 'lib/fontisan/converters/outline_converter.rb', line 931 def variable_font?(font) font.has_table?("fvar") end |