SharpFont + ScalableFont implementation

https://github.com/Robmaister/SharpFont

TODO: replace Code Bold.otf with the full version, fix any bugs, build on Linux, possibly move ToolBox string wrapping and limiting logic to ScalableFont class for better results.
This commit is contained in:
juanjp600
2017-03-07 13:44:42 -03:00
parent 88a76f0c9f
commit d6c292a2cc
231 changed files with 28528 additions and 94 deletions

View File

@@ -0,0 +1,54 @@
#region MIT License
/*Copyright (c) 2012-2015 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#endregion
using System;
using System.Runtime.InteropServices;
using SharpFont.Internal;
using FT_Long = System.IntPtr;
using FT_ULong = System.UIntPtr;
namespace SharpFont.PostScript.Internal
{
[StructLayout(LayoutKind.Sequential)]
internal struct FaceDictRec
{
internal PrivateRec private_dict;
internal uint len_buildchar;
internal FT_Long forcebold_threshold;
internal FT_Long stroke_width;
internal FT_Long expansion_factor;
internal byte paint_type;
internal byte font_type;
internal FTMatrix font_matrix;
internal FTVector font_offset;
internal uint num_subrs;
internal FT_ULong subrmap_offset;
internal int sd_bytes;
}
}

View File

@@ -0,0 +1,69 @@
#region MIT License
/*Copyright (c) 2012-2015 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#endregion
using System;
using System.Runtime.InteropServices;
using SharpFont.Internal;
using FT_Long = System.IntPtr;
using FT_ULong = System.UIntPtr;
namespace SharpFont.PostScript.Internal
{
[StructLayout(LayoutKind.Sequential)]
internal struct FaceInfoRec
{
[MarshalAs(UnmanagedType.LPStr)]
internal string cid_font_name;
internal FT_Long cid_version;
internal int cid_font_type;
[MarshalAs(UnmanagedType.LPStr)]
internal string registry;
[MarshalAs(UnmanagedType.LPStr)]
internal string ordering;
internal int supplement;
internal FontInfoRec font_info;
internal BBox font_bbox;
internal FT_ULong uid_base;
internal int num_xuid;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
internal FT_ULong[] xuid;
internal FT_ULong cidmap_offset;
internal int fd_bytes;
internal int gd_bytes;
internal FT_ULong cid_count;
internal int num_dicts;
internal IntPtr font_dicts;
internal FT_ULong data_offset;
}
}

View File

@@ -0,0 +1,56 @@
#region MIT License
/*Copyright (c) 2012-2015 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#endregion
using System;
using System.Runtime.InteropServices;
using FT_Long = System.IntPtr;
using FT_ULong = System.UIntPtr;
namespace SharpFont.PostScript.Internal
{
[StructLayout(LayoutKind.Sequential)]
internal struct FontInfoRec
{
[MarshalAs(UnmanagedType.LPStr)]
internal string version;
[MarshalAs(UnmanagedType.LPStr)]
internal string notice;
[MarshalAs(UnmanagedType.LPStr)]
internal string full_name;
[MarshalAs(UnmanagedType.LPStr)]
internal string family_name;
[MarshalAs(UnmanagedType.LPStr)]
internal string weight;
internal FT_Long italic_angle;
internal byte is_fixed_pitch;
internal short underline_position;
internal ushort underline_thickness;
}
}

View File

@@ -0,0 +1,82 @@
#region MIT License
/*Copyright (c) 2012-2015 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#endregion
using System;
using System.Runtime.InteropServices;
using FT_Long = System.IntPtr;
using FT_ULong = System.UIntPtr;
namespace SharpFont.PostScript.Internal
{
[StructLayout(LayoutKind.Sequential)]
internal struct PrivateRec
{
internal int unique_id;
internal int lenIV;
internal byte num_blue_values;
internal byte num_other_blues;
internal byte num_family_blues;
internal byte num_family_other_blues;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 14)]
internal short[] blue_values;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)]
internal short[] other_blues;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 14)]
internal short[] family_blues;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)]
internal short[] family_other_blues;
internal FT_Long blue_scale;
internal int blue_shift;
internal int blue_fuzz;
internal ushort standard_width;
internal ushort standard_height;
internal byte num_snap_widths;
internal byte num_snap_heights;
internal byte force_bold;
internal byte round_stem_up;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 13)]
internal short[] snap_widths;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 13)]
internal short[] snap_heights;
internal FT_Long expansion_factor;
internal FT_Long language_group;
internal FT_Long password;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
internal short[] min_feature;
}
}