Search found 9 matches

by sepoto
2015-07-12T17:51:28-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Re: Font for use with Hangul Jamo.

My system sees the file as a True Type Font collection and for some reason TrueTypes seem to have different extensions all the time such as .fon .ttf and .ttc. This version of Batang is a font that is installed with Microsoft Office. It's available from Microsoft in stand alone form as well. http ...
by sepoto
2015-07-12T17:30:24-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Re: Font for use with Hangul Jamo.

That's OK because now that the problem is exposed I can go about solving it. I was out of my depth in terms of the actual hidden contents of the text file which you have so graciously shed light upon for me. Thank you very much I think I can handle things from here then.
by sepoto
2015-07-12T16:34:51-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Re: Font for use with Hangul Jamo.

Font File (Batang TTF): http://filebin.ca/28QaqWyNFumC/batang.ttc Also: (How to place any unicode character of your choosing inside a Unicode encoded text file.) $sCurChar = [char]::ConvertFromUtf32(0x1110) If( Test-Path mychar.txt ) { Remove-Item mychar.txt } Add-Content -Encoding UTF8 mychar.txt ...
by sepoto
2015-07-12T16:22:50-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Re: Font for use with Hangul Jamo.

http://imagebin.ca/v/28QXCnUEjdlC

The screenshot above shows that Notepad++ sees the mychar.txt file as UTF-8 encoded.
by sepoto
2015-07-12T16:07:57-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Re: Font for use with Hangul Jamo.

Then I must post a completely non script example to display that there is a problem occurring outside of the script: This is my text file mychar.txt as with a Hangul Jamo character inside (Screenshot:) http://imagebin.ca/v/28QRdnQcl1yA This is the command that is used: C:\Users\erics_000\Documents ...
by sepoto
2015-07-12T15:41:20-07:00
Forum: Developers
Topic: Font for use with Hangul Jamo.
Replies: 14
Views: 9667

Font for use with Hangul Jamo.

I am using ImageMagick in conjunction with this script: https://github.com/sepoto/powershell_font_to_texturemap The script works very well as long as the font is carefully chosen. For Hangul Jamo: 0x1100 - 0x11FF I have not yet been able to find a font that will output this range. I have tried so ...
by sepoto
2015-07-11T21:58:12-07:00
Forum: Developers
Topic: Converting Syriac to an image.
Replies: 3
Views: 3999

Re: Converting Syriac to an image.

The noto font kit from Google does the best job I can find with Syriac.
by sepoto
2015-07-11T17:31:02-07:00
Forum: Developers
Topic: Converting Syriac to an image.
Replies: 3
Views: 3999

Re: Converting Syriac to an image.

I have checked that the contents of the file used by the label parameter is correct and contains only one character by way of the PowerShell ISE. The fonts I have chosen from Wikipedia's Unicode font page as fonts supporting Syriac. I've noticed that this unwanted character is a persistent font ...
by sepoto
2015-07-11T17:08:51-07:00
Forum: Developers
Topic: Converting Syriac to an image.
Replies: 3
Views: 3999

Converting Syriac to an image.

$sOutputDir = "C:\Users\erics_000\Desktop\Output" $sCharsDir = "$sOutputDir\Chars" $sCombDir = "$sOutputDir\Comb" $sImageMagickHome = "C:\ImageMagick" $sImageMagickConv = "$sImageMagickHome\convert.exe" New-Item -ItemType Directory -Force -Path $sOutputDir New-Item -ItemType Directory -Force -Path ...