SharpFont
SharpFont copied to clipboard
Cross-platform FreeType bindings for .NET - Need maintainer
I catch a strange issue with custom font (Ubuntu-B.ttf with merged other fonts for different codepages). It worked well until I'm try to render some specific glyph (unicode 0x2003 which...
This multi targets the projects to net45;netcoreapp3.0. To be straight honest, I didn't want to put in the effort to make this fully backwards compatible (keeping .NET 2 support or...
These are all the uses of Linq I could find in SharpFont: TrueType\Header.cs: `return rec.Created.Select(x => (int)x).ToArray();` TrueType\Header.cs: `return rec.Modified.Select(x => (int)x).ToArray();` FaceInfo.cs: `return rec.xuid.Select(x => (uint)x).ToArray();` Library.cs: `ParameterRec[] paramRecs...
I believe the paths for these depdendencies: https://github.com/Robmaister/SharpFont/blob/26454a8b5b53733ff7a10de2322469b64cb75ee8/Source/SharpFont.HarfBuzz.Example/SharpFont.HarfBuzz.Example.csproj#L48 should be ```XML PreserveNewest PreserveNewest PreserveNewest PreserveNewest PreserveNewest ```
I have been struggling with this for days. I finally was able to get the spacewizards version to work with a .netcore app for windows after I downloaded someone elses...
Added a few more steps to make sure we get the FieldInfo needed for the Mono hack.
On .NET-Core 2.0 x64, I get "Arithmetic operation resulted in an overflow." on reading the ascender... ``` /// /// Gets the ascender in 26.6 fractional pixels. /// /// public Fixed26Dot6...
I installed SharpFont using the nuget package but the deployed `freetype6.dll` is always 32bit. When I switch the platform of my solution to `x64` I get this exception: > Unhandled...
Would you be open to a PR that adds support for .NET Standard, in addition to the existing platforms? We'd like to use SharpFont in the [OpenSAGE](https://github.com/OpenSAGE/OpenSAGE) project, which targets...
Current implementation of ToGdipBitmap extension method (when PixelMode.Gray) keeps gray border around letters:  It doesn't look good when bright text is rendered on bright background. Instead, I propose to...