├── .editorconfig ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── Cyotek.Drawing.BitmapFont.Benchmarks.sln ├── Cyotek.Drawing.BitmapFont.ndproj ├── Cyotek.Drawing.BitmapFont.sln ├── LICENSE.txt ├── README.md ├── benchmarks ├── Benchmarks.csproj ├── Benchmarks.v3.ncrunchproject ├── LoaderBenchmarks.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── V1TextLoader.cs ├── V1XmlLoader.cs └── data │ ├── binary.fnt │ ├── text.fnt │ └── xml.fnt ├── fontviewer ├── AboutDialog.cs ├── AboutDialog.designer.cs ├── AboutDialog.resx ├── BaseForm.cs ├── Cyotek.Demo.BitmapFontViewer.csproj ├── FileDialogHelper.cs ├── FileInfo.cs ├── FilePane.cs ├── FilePane.designer.cs ├── FilePane.resx ├── InformationDialog.cs ├── InformationDialog.designer.cs ├── InformationDialog.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── PropertyGrid.cs ├── Resources │ └── Open.png ├── about.txt ├── app.config └── packages.config ├── nuget.config ├── res ├── Cyotek.Drawing.BitmapFont.snk ├── icon-16.pdn ├── icon-16.png ├── icon.ico ├── icon.pdn ├── icon.png ├── original-demo.png ├── textmaker-preview.png ├── viewer-characters.png ├── viewer-font.png ├── viewer-kernings.png ├── viewer-preview.png └── viewer-texturepages.png ├── runtests.cmd ├── samples ├── dynastium-24.fnt ├── dynastium-24_0.png ├── dynastium-48.fnt ├── dynastium-48_0.png ├── eightbit-atari-regular.fnt ├── eightbit-atari-regular_0.png ├── eightbit-atari-regular_1.png ├── general-failure-48.fnt ├── general-failure-48_0.png ├── general-failure-48_1.png ├── marediv.fnt ├── marediv_0.png ├── marediv_1.png ├── test.ctm ├── trebuchet-ms-bin.fnt ├── trebuchet-ms-bin_0.png ├── trebuchet-ms-bin_1.png ├── trebuchet-ms-limited.fnt ├── trebuchet-ms-limited_0.png ├── trebuchet-ms-text.fnt ├── trebuchet-ms-xml.fnt ├── trebuchet-ms_0.png └── trebuchet-ms_1.png ├── src ├── BitmapFont.cs ├── BitmapFontFormat.cs ├── BitmapFontLoader.cs ├── Character.cs ├── Cyotek.Drawing.BitmapFont.csproj ├── Directory.Build.props ├── Kerning.cs ├── Padding.cs ├── Page.cs ├── Properties │ └── AssemblyInfo.cs └── WordHelpers.cs ├── tests ├── BitmapFontAssert.cs ├── BitmapFontLoaderTests.cs ├── BitmapFontTests.cs ├── CharacterTests.cs ├── Cyotek.Drawing.BitmapFont.Tests.csproj ├── Cyotek.Drawing.BitmapFont.Tests.v3.ncrunchproject ├── Properties │ └── AssemblyInfo.cs ├── TestBase.cs ├── data │ ├── empty-line-regression-test.fnt │ ├── hiero-sample.fnt │ ├── simple-bin.fnt │ ├── simple-spaces.fnt │ ├── simple-xml.fnt │ ├── simple.fnt │ ├── trebuchet-invalid-bin.fnt │ ├── trebuchet-invalid-text.fnt │ ├── trebuchet-invalid-xml.fnt │ ├── trebuchet-ms-bin.fnt │ ├── trebuchet-ms-text.fnt │ └── trebuchet-ms-xml.fnt └── packages.config └── textmaker ├── ClipboardHelper.cs ├── ColorButton.cs ├── ColorExtensions.cs ├── Cyotek.Demo.TextMaker.csproj ├── Filters.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SimpleJson.cs ├── TextBitmapConfiguration.cs ├── TextBitmapMaker.cs ├── about.txt ├── app.config └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Cyotek.Drawing.BitmapFont.Benchmarks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/Cyotek.Drawing.BitmapFont.Benchmarks.sln -------------------------------------------------------------------------------- /Cyotek.Drawing.BitmapFont.ndproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/Cyotek.Drawing.BitmapFont.ndproj -------------------------------------------------------------------------------- /Cyotek.Drawing.BitmapFont.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/Cyotek.Drawing.BitmapFont.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/Benchmarks.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/Benchmarks.v3.ncrunchproject -------------------------------------------------------------------------------- /benchmarks/LoaderBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/LoaderBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /benchmarks/V1TextLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/V1TextLoader.cs -------------------------------------------------------------------------------- /benchmarks/V1XmlLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/V1XmlLoader.cs -------------------------------------------------------------------------------- /benchmarks/data/binary.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/data/binary.fnt -------------------------------------------------------------------------------- /benchmarks/data/text.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/data/text.fnt -------------------------------------------------------------------------------- /benchmarks/data/xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/benchmarks/data/xml.fnt -------------------------------------------------------------------------------- /fontviewer/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/AboutDialog.cs -------------------------------------------------------------------------------- /fontviewer/AboutDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/AboutDialog.designer.cs -------------------------------------------------------------------------------- /fontviewer/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/AboutDialog.resx -------------------------------------------------------------------------------- /fontviewer/BaseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/BaseForm.cs -------------------------------------------------------------------------------- /fontviewer/Cyotek.Demo.BitmapFontViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Cyotek.Demo.BitmapFontViewer.csproj -------------------------------------------------------------------------------- /fontviewer/FileDialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/FileDialogHelper.cs -------------------------------------------------------------------------------- /fontviewer/FileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/FileInfo.cs -------------------------------------------------------------------------------- /fontviewer/FilePane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/FilePane.cs -------------------------------------------------------------------------------- /fontviewer/FilePane.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/FilePane.designer.cs -------------------------------------------------------------------------------- /fontviewer/FilePane.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/FilePane.resx -------------------------------------------------------------------------------- /fontviewer/InformationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/InformationDialog.cs -------------------------------------------------------------------------------- /fontviewer/InformationDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/InformationDialog.designer.cs -------------------------------------------------------------------------------- /fontviewer/InformationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/InformationDialog.resx -------------------------------------------------------------------------------- /fontviewer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/MainForm.Designer.cs -------------------------------------------------------------------------------- /fontviewer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/MainForm.cs -------------------------------------------------------------------------------- /fontviewer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/MainForm.resx -------------------------------------------------------------------------------- /fontviewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Program.cs -------------------------------------------------------------------------------- /fontviewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /fontviewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /fontviewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Properties/Resources.resx -------------------------------------------------------------------------------- /fontviewer/PropertyGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/PropertyGrid.cs -------------------------------------------------------------------------------- /fontviewer/Resources/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/Resources/Open.png -------------------------------------------------------------------------------- /fontviewer/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/about.txt -------------------------------------------------------------------------------- /fontviewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/app.config -------------------------------------------------------------------------------- /fontviewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/fontviewer/packages.config -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/nuget.config -------------------------------------------------------------------------------- /res/Cyotek.Drawing.BitmapFont.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/Cyotek.Drawing.BitmapFont.snk -------------------------------------------------------------------------------- /res/icon-16.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/icon-16.pdn -------------------------------------------------------------------------------- /res/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/icon-16.png -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/icon.pdn -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/original-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/original-demo.png -------------------------------------------------------------------------------- /res/textmaker-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/textmaker-preview.png -------------------------------------------------------------------------------- /res/viewer-characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/viewer-characters.png -------------------------------------------------------------------------------- /res/viewer-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/viewer-font.png -------------------------------------------------------------------------------- /res/viewer-kernings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/viewer-kernings.png -------------------------------------------------------------------------------- /res/viewer-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/viewer-preview.png -------------------------------------------------------------------------------- /res/viewer-texturepages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/res/viewer-texturepages.png -------------------------------------------------------------------------------- /runtests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/runtests.cmd -------------------------------------------------------------------------------- /samples/dynastium-24.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/dynastium-24.fnt -------------------------------------------------------------------------------- /samples/dynastium-24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/dynastium-24_0.png -------------------------------------------------------------------------------- /samples/dynastium-48.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/dynastium-48.fnt -------------------------------------------------------------------------------- /samples/dynastium-48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/dynastium-48_0.png -------------------------------------------------------------------------------- /samples/eightbit-atari-regular.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/eightbit-atari-regular.fnt -------------------------------------------------------------------------------- /samples/eightbit-atari-regular_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/eightbit-atari-regular_0.png -------------------------------------------------------------------------------- /samples/eightbit-atari-regular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/eightbit-atari-regular_1.png -------------------------------------------------------------------------------- /samples/general-failure-48.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/general-failure-48.fnt -------------------------------------------------------------------------------- /samples/general-failure-48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/general-failure-48_0.png -------------------------------------------------------------------------------- /samples/general-failure-48_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/general-failure-48_1.png -------------------------------------------------------------------------------- /samples/marediv.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/marediv.fnt -------------------------------------------------------------------------------- /samples/marediv_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/marediv_0.png -------------------------------------------------------------------------------- /samples/marediv_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/marediv_1.png -------------------------------------------------------------------------------- /samples/test.ctm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/test.ctm -------------------------------------------------------------------------------- /samples/trebuchet-ms-bin.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-bin.fnt -------------------------------------------------------------------------------- /samples/trebuchet-ms-bin_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-bin_0.png -------------------------------------------------------------------------------- /samples/trebuchet-ms-bin_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-bin_1.png -------------------------------------------------------------------------------- /samples/trebuchet-ms-limited.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-limited.fnt -------------------------------------------------------------------------------- /samples/trebuchet-ms-limited_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-limited_0.png -------------------------------------------------------------------------------- /samples/trebuchet-ms-text.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-text.fnt -------------------------------------------------------------------------------- /samples/trebuchet-ms-xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms-xml.fnt -------------------------------------------------------------------------------- /samples/trebuchet-ms_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms_0.png -------------------------------------------------------------------------------- /samples/trebuchet-ms_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/samples/trebuchet-ms_1.png -------------------------------------------------------------------------------- /src/BitmapFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/BitmapFont.cs -------------------------------------------------------------------------------- /src/BitmapFontFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/BitmapFontFormat.cs -------------------------------------------------------------------------------- /src/BitmapFontLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/BitmapFontLoader.cs -------------------------------------------------------------------------------- /src/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Character.cs -------------------------------------------------------------------------------- /src/Cyotek.Drawing.BitmapFont.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Cyotek.Drawing.BitmapFont.csproj -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Kerning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Kerning.cs -------------------------------------------------------------------------------- /src/Padding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Padding.cs -------------------------------------------------------------------------------- /src/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Page.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WordHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/src/WordHelpers.cs -------------------------------------------------------------------------------- /tests/BitmapFontAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/BitmapFontAssert.cs -------------------------------------------------------------------------------- /tests/BitmapFontLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/BitmapFontLoaderTests.cs -------------------------------------------------------------------------------- /tests/BitmapFontTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/BitmapFontTests.cs -------------------------------------------------------------------------------- /tests/CharacterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/CharacterTests.cs -------------------------------------------------------------------------------- /tests/Cyotek.Drawing.BitmapFont.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/Cyotek.Drawing.BitmapFont.Tests.csproj -------------------------------------------------------------------------------- /tests/Cyotek.Drawing.BitmapFont.Tests.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/Cyotek.Drawing.BitmapFont.Tests.v3.ncrunchproject -------------------------------------------------------------------------------- /tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/TestBase.cs -------------------------------------------------------------------------------- /tests/data/empty-line-regression-test.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/empty-line-regression-test.fnt -------------------------------------------------------------------------------- /tests/data/hiero-sample.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/hiero-sample.fnt -------------------------------------------------------------------------------- /tests/data/simple-bin.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/simple-bin.fnt -------------------------------------------------------------------------------- /tests/data/simple-spaces.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/simple-spaces.fnt -------------------------------------------------------------------------------- /tests/data/simple-xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/simple-xml.fnt -------------------------------------------------------------------------------- /tests/data/simple.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/simple.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-invalid-bin.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-invalid-bin.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-invalid-text.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-invalid-text.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-invalid-xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-invalid-xml.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-ms-bin.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-ms-bin.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-ms-text.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-ms-text.fnt -------------------------------------------------------------------------------- /tests/data/trebuchet-ms-xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/data/trebuchet-ms-xml.fnt -------------------------------------------------------------------------------- /tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/tests/packages.config -------------------------------------------------------------------------------- /textmaker/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/ClipboardHelper.cs -------------------------------------------------------------------------------- /textmaker/ColorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/ColorButton.cs -------------------------------------------------------------------------------- /textmaker/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/ColorExtensions.cs -------------------------------------------------------------------------------- /textmaker/Cyotek.Demo.TextMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/Cyotek.Demo.TextMaker.csproj -------------------------------------------------------------------------------- /textmaker/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/Filters.cs -------------------------------------------------------------------------------- /textmaker/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/MainForm.Designer.cs -------------------------------------------------------------------------------- /textmaker/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/MainForm.cs -------------------------------------------------------------------------------- /textmaker/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/MainForm.resx -------------------------------------------------------------------------------- /textmaker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/Program.cs -------------------------------------------------------------------------------- /textmaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /textmaker/SimpleJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/SimpleJson.cs -------------------------------------------------------------------------------- /textmaker/TextBitmapConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/TextBitmapConfiguration.cs -------------------------------------------------------------------------------- /textmaker/TextBitmapMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/TextBitmapMaker.cs -------------------------------------------------------------------------------- /textmaker/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/about.txt -------------------------------------------------------------------------------- /textmaker/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/app.config -------------------------------------------------------------------------------- /textmaker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyotek/Cyotek.Drawing.BitmapFont/HEAD/textmaker/packages.config --------------------------------------------------------------------------------