Mork vom Ork Posted April 24, 2016 Share Posted April 24, 2016 Sorry to bring up again this thread, but is it possible to integrate the following german letters (so called "UMLAUTE"): ä ; ö ; ü ; Ä ; Ö ; Ü ; ß would be great, so we don't get missing letters in the german help text of CLOVER ;-) Don't know if i could do this myself by just placing them at this point within the script: # Apply any user leading to textHeight textHeight=$(( $textHeight + $leading )) # This adds the leading above the final chars for each row chars=('.' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '!' '\"' '#' '$' '%' '&' '’' '(' ')' '*' '+' ',' '-' '.' '/'\ '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' ':' ';' '<' '=' '>' '?'\ '@' 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O'\ 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' '[' '\\\' ']' '^' '_'\ '’' 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o'\ 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' '{' '|' '}' '~' ' '\ ) if [ $gIncludeAnsi -eq 1 ]; then chars+=('€' ' ' '‚' 'ƒ' '„' '…' '†' '‡' 'ˆ' '‰' 'Š' '‹' 'Œ' ' ' 'Ž' ' '\ ' ' '‘' '’' '“' '”' '•' '–' '—' '˜' '™' 'š' '›' 'œ' ' ' 'ž' 'Ÿ'\ ' ' '¡' '¢' '£' '¤' '¥' '¦' '§' '¨' '©' 'ª' '«' '¬' ' ' '®' '¯'\ '°' '±' '²' '³' '´' 'µ' '¶' '·' '¸' '¹' 'º' '»' '¼' '½' '¾' '¿'\ ) else chars+=(' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ) fi if [ $gIncludeCyrillic -eq 1 ]; then chars+=('А' 'Б' 'В' 'Г' 'Д' 'Е' 'Ж' 'З' 'И' 'Й' 'К' 'Л' 'М' 'Н' 'О' 'П'\ 'Р' 'С' 'Т' 'У' 'Ф' 'Х' 'Ц' 'Ч' 'Ш' 'Щ' 'Ъ' 'Ы' 'Ь' 'Э' 'Ю' 'Я'\ 'а' 'б' 'в' 'г' 'д' 'е' 'ж' 'з' 'и' 'й' 'к' 'л' 'м' 'н' 'о' 'п'\ 'р' 'с' 'т' 'у' 'ф' 'х' 'ц' 'ч' 'ш' 'щ' 'ъ' 'ы' 'ь' 'э' 'ю' 'я'\ ) else chars+=(' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ) fi printf "Scanning font character metrics\n" printf "===============================\n" or if they have to be in a special place following some kind of ascii-table or something like this. For my poor understanding, after editing it has to look something similar like this: # Set all characters to be used (Includes ANSI and cyrillic characters). completeSetOfChars="!\"#$&’()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\]^_’abcdefghijklmnopqrstuvwxyz{|}~ € ‚ƒ„…†‡ˆ‰Š‹Œ Ž ‘’“”•–—˜™š›œ žŸ ¡¢£¤¥¦§¨©ª«¬ ®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" # Read the bounds font metric of the entire string to get height metricsOfString=$(GetMetrics "$completeSetOfChars") getValues=$(GetTextHeight "$metricsOfString") textHeight="${getValues%:*}" textBaseline="${getValues#*:}" # Apply any user leading to textHeight textHeight=$(( $textHeight + $leading )) # This adds the leading above the final chars for each row chars=('.' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '!' '\"' '#' '$' '%' '&' '’' '(' ')' '*' '+' ',' '-' '.' '/'\ '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' ':' ';' '<' '=' '>' '?'\ '@' 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O'\ 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' '[' '\\\' ']' '^' '_'\ '’' 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o'\ 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' '{' '|' '}' '~' ' '\ ) if [ $gIncludeAnsi -eq 1 ]; then chars+=('€' ' ' '‚' 'ƒ' '„' '…' '†' '‡' 'ˆ' '‰' 'Š' '‹' 'Œ' ' ' 'Ž' ' '\ ' ' '‘' '’' '“' '”' '•' '–' '—' '˜' '™' 'š' '›' 'œ' ' ' 'ž' 'Ÿ'\ ' ' '¡' '¢' '£' '¤' '¥' '¦' '§' '¨' '©' 'ª' '«' '¬' ' ' '®' '¯'\ '°' '±' '²' '³' '´' 'µ' '¶' '·' '¸' '¹' 'º' '»' '¼' '½' '¾' '¿'\ 'À' 'Á' 'Â' 'Ã' 'Ä' 'Å' 'Æ' 'Ç' 'È' 'É' 'Ê' 'Ë' 'Ì' 'Í' 'Î' 'Ï'\ 'Ð' 'Ñ' 'Ò' 'Ó' 'Ô' 'Õ' 'Ö' '×' 'Ø' 'Ù' 'Ú' 'Û' 'Ü' 'Ý' 'Þ' 'ß'\ 'à' 'á' 'â' 'ã' 'ä' 'å' 'æ' 'ç' 'è' 'é' 'ê' 'ë' 'ì' 'í' 'î' 'ï'\ 'ð' 'ñ' 'ò' 'ó' 'ô' 'õ' 'ö' '÷' 'ø' 'ù' 'ú' 'û' 'ü' 'ý' 'þ' 'ÿ'\ ) else chars+=(' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ) fi if [ $gIncludeCyrillic -eq 1 ]; then chars+=('А' 'Б' 'В' 'Г' 'Д' 'Е' 'Ж' 'З' 'И' 'Й' 'К' 'Л' 'М' 'Н' 'О' 'П'\ 'Р' 'С' 'Т' 'У' 'Ф' 'Х' 'Ц' 'Ч' 'Ш' 'Щ' 'Ъ' 'Ы' 'Ь' 'Э' 'Ю' 'Я'\ 'а' 'б' 'в' 'г' 'д' 'е' 'ж' 'з' 'и' 'й' 'к' 'л' 'м' 'н' 'о' 'п'\ 'р' 'с' 'т' 'у' 'ф' 'х' 'ц' 'ч' 'ш' 'щ' 'ъ' 'ы' 'ь' 'э' 'ю' 'я'\ ) else chars+=(' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ) fi printf "Scanning font character metrics\n" printf "===============================\n" So it will include all ascii and ansi letters. Keep me corrected if i am wrong (i am NO coder). Any help appreciated... Regards, Mork vom Ork EDIT #1: just tested. To make it work, you have to also change this part: # Calculate canvas size canvasWidth=$(( $charWidth * 16 )) canvasHeight=$(( $textHeight * 16 )) echo "Canvas size will be ${canvasWidth}x${canvasHeight} using cell size ${charWidth}x${textHeight}" into this: # Calculate canvas size canvasWidth=$(( $charWidth * 16 )) canvasHeight=$(( $textHeight * 20 )) // add the value of new lines you inserted above to the original 16 echo "Canvas size will be ${canvasWidth}x${canvasHeight} using cell size ${charWidth}x${textHeight}" and this part: # Build a 16x16 character grid. charCount=0 for (( y=0; y<16; y++ )) into this: # Build a 16x16 character grid. charCount=0 for (( y=0; y<20; y++ )) cause we added 4 more lines of characters. Image will be calculated correctly. Newly Calculated image will now look like this (i run the script with the option '-rc'): EDIT #2: something must be wrong anyway, cause as you can see, the following characters are still not present in the image: ä, ö, ü and ß (maybe some more, which i just not recognized, cause i won't miss them) EDIT #3: my above code correction seems to work, cause with font "/Library/Fonts/Tahoma.ttf" the resulting picture from the script is ok: so it must be a corrupted CHICAGO font, which i copied from an old "Mac OS 9.2.2" systemfolder. Will try that again later... got to work now. Oh, before i forget: a big thanx to the contributor "blackosx" for his wonderful script (createFont_v86), which makes fontcreation a lot easier. Hope, you don't mind, that i just extended your script for my personal use and find it may be usefull for others, too. 2 Link to comment Share on other sites More sharing options...
Slice Posted April 25, 2016 Share Posted April 25, 2016 Great! We also should correct Clover help to use these characters in the case of German language? Link to comment Share on other sites More sharing options...
Mork vom Ork Posted April 25, 2016 Share Posted April 25, 2016 Yeah, and now it may be possible to completly translate CLOVER, not just the HELP page. Would like to do the job for german support ;-) Link to comment Share on other sites More sharing options...
Slice Posted April 25, 2016 Share Posted April 25, 2016 As far as I see unicode characters 0xA0 - 0xFF will be drawn correctly. So no Clover change needed. But check this text, may be you know what to change here case german: AddMenuInfoLine(&HelpMenu, L"ESC - Zurueck aus Untermenue, Hauptmenue erneuern"); AddMenuInfoLine(&HelpMenu, L"F1 - Diese Hilfe"); AddMenuInfoLine(&HelpMenu, L"F2 - Sichere preboot.log (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F3 - Show hidden entries"); AddMenuInfoLine(&HelpMenu, L"F4 - Sichere OEM DSDT in EFI/CLOVER/ACPI/origin/ (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F5 - Sichere gepatchtes DSDT in EFI/CLOVER/ACPI/origin/ (FAT32)"); AddMenuInfoLine(&HelpMenu, L"F6 - Sichere VideoBios in EFI/CLOVER/misc/ (FAT32)"); AddMenuInfoLine(&HelpMenu, L"F10 - Sichere Bildschirmfoto in EFI/CLOVER/misc/ (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F12 - Volume auswerfen (DVD)"); AddMenuInfoLine(&HelpMenu, L"Leertaste - Details über den gewählten Menue Eintrag"); AddMenuInfoLine(&HelpMenu, L"Zahlen 1-9 - Kurzwahl zum Menue Eintrag"); AddMenuInfoLine(&HelpMenu, L"A - Menue Informationen"); AddMenuInfoLine(&HelpMenu, L"O - Menue Optionen"); AddMenuInfoLine(&HelpMenu, L"R - Neustart"); AddMenuInfoLine(&HelpMenu, L"U - Ausschalten"); break; Link to comment Share on other sites More sharing options...
Mork vom Ork Posted April 25, 2016 Share Posted April 25, 2016 As far as I see unicode characters 0xA0 - 0xFF will be drawn correctly. So no Clover change needed. But check this text, may be you know what to change here case german: AddMenuInfoLine(&HelpMenu, L"ESC - Zurück aus Untermenü, Hauptmenü erneuern"); AddMenuInfoLine(&HelpMenu, L"F1 - Diese Hilfe"); AddMenuInfoLine(&HelpMenu, L"F2 - Sichere preboot.log (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F3 - Zeige versteckte Einträge"); AddMenuInfoLine(&HelpMenu, L"F4 - Sichere OEM DSDT in EFI/CLOVER/ACPI/origin/ (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F5 - Sichere gepatchtes DSDT in EFI/CLOVER/ACPI/origin/ (FAT32)"); AddMenuInfoLine(&HelpMenu, L"F6 - Sichere VideoBios in EFI/CLOVER/misc/ (FAT32)"); AddMenuInfoLine(&HelpMenu, L"F10 - Sichere Bildschirmfoto in EFI/CLOVER/misc/ (nur mit FAT32)"); AddMenuInfoLine(&HelpMenu, L"F12 - Volume auswerfen (DVD)"); AddMenuInfoLine(&HelpMenu, L"Leertaste - Details über den gewählten Menü Eintrag"); AddMenuInfoLine(&HelpMenu, L"Zahlen 1-9 - Kurzwahl zum Menü Eintrag"); AddMenuInfoLine(&HelpMenu, L"A - Menü Informationen"); AddMenuInfoLine(&HelpMenu, L"O - Menü Optionen"); AddMenuInfoLine(&HelpMenu, L"R - Neustart"); AddMenuInfoLine(&HelpMenu, L"U - Ausschalten"); break; checked and edited. But maybe not a good idea to change as soon as possible... cause all the known themes are using old font.png (w/o the new ANSI letters). So if u will change right now w/o updating all the font images, u will miss the signs not included in old fonts.png's. So first update the font.png's in the themes included in clover installer, than make the changes to the translated texts. Keep this in mind... Link to comment Share on other sites More sharing options...
Slice Posted July 14, 2016 Share Posted July 14, 2016 Hi blackosx, is it possible four new chars will be included in the image? chars=('.' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '◎' '◉' '☐' '☑' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '!' '\"' '#' '$' '%' '&' '’' '(' ')' '*' '+' ',' '-' '.' '/'\ '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' ':' ';' '<' '=' '>' '?'\ '@' 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O'\ 1 Link to comment Share on other sites More sharing options...
Sherlocks Posted September 3, 2016 Share Posted September 3, 2016 Supremeui-Mac-Pro:createFont_v0.86 Supreme$ ./createFont.sh -t2 -s20 -l -2 -f/Users/Supreme/Downloads/createFont_v0.86/Cambria.ttf -b150,150,150 -c 20,20,20 -ra Scanning font character metrics =============================== .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ...............................................................................................printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ................................................................. Widest Char is at index 87 | W at 19 pixels Canvas size will be 336x368 using cell size 21x23 Building ImageMagick code sequence Running ImageMagick to create image convert: no images defined `/Users/Supreme/Downloads/createFont_v0.86/type2_Cambria_20pt_Cell_21x23_l-2_ra.png' @ error/convert.c/ConvertImageCommand/3257. Supremeui-Mac-Pro:createFont_v0.86 Supreme$ i can't convert everything fonts. i followed your instruction in main page. but i have no lucky. thanks Link to comment Share on other sites More sharing options...
Slice Posted September 6, 2016 Share Posted September 6, 2016 i can't convert everything fonts. i followed your instruction in main page. but i have no lucky. thanks This is a problem of wrong ImageMagick. If you install good one the error will disappear. Link to comment Share on other sites More sharing options...
Sherlocks Posted September 7, 2016 Share Posted September 7, 2016 This is a problem of wrong ImageMagick. If you install good one the error will disappear. i tried to install ImageMagicK throughout MacPort and Homebrew. very strange. my system already recognized installed ImageMagicK. still not success. Supreme-MacBook-Air:createFont_v0.86 Supreme$ sudo port install ImageMagick Warning: The Xcode Command Line Tools don't appear to be installed; most ports will likely fail to build. Warning: Install them by running `xcode-select --install'. ---> Computing dependencies for ImageMagick ---> Fetching archive for ImageMagick ---> Attempting to fetch ImageMagick-6.9.5-8_0+x11.darwin_15.x86_64.tbz2 from https://packages.macports.org/ImageMagick ---> Attempting to fetch ImageMagick-6.9.5-8_0+x11.darwin_15.x86_64.tbz2 from http://sea.us.packages.macports.org/macports/packages/ImageMagick ---> Attempting to fetch ImageMagick-6.9.5-8_0+x11.darwin_15.x86_64.tbz2 from http://nou.nc.packages.macports.org/pub/macports/packages.macports.org/ImageMagick ---> Fetching distfiles for ImageMagick ---> Verifying checksums for ImageMagick ---> Extracting ImageMagick ---> Configuring ImageMagick ---> Building ImageMagick ---> Staging ImageMagick into destroot ---> Installing ImageMagick @6.9.5-8_0+x11 ---> Activating ImageMagick @6.9.5-8_0+x11 ---> Cleaning ImageMagick ---> Updating database of binaries ---> Scanning binaries for linking errors ---> No broken files found. Supreme-MacBook-Air:createFont_v0.86 Supreme$ ./createFont.sh -t2 -f/Users/Supreme/Desktop/malgun.ttf -s12 Scanning font character metrics =============================== .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ...............................................................................................printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ..printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ............printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ..printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .............printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ...printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value .............printf: : expected numeric value printf: : expected numeric value printf: : expected numeric value ................................................................................... Widest Char is at index 137 | ‰ at 15 pixels Canvas size will be 272x288 using cell size 17x18 Building ImageMagick code sequence Running ImageMagick to create image convert: no images defined `/Users/Supreme/Downloads/createFont_v0.86/type2_malgun_12pt_Cell_17x18_l0.png' @ error/convert.c/ConvertImageCommand/3257. thanks in advance Link to comment Share on other sites More sharing options...
blackosx Posted September 13, 2016 Author Share Posted September 13, 2016 Hi Sherlocks What result do you get with the following command? convert -debug annotate xc: -font /Users/Supreme/Desktop/malgun.ttf -pointsize 12 -annotate 0 X null: Hi blackosx, is it possible four new chars will be included in the image? chars=('.' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '◎' '◉' '☐' '☑' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '\ ' ' '!' '\"' '#' '$' '%' '&' '’' '(' ')' '*' '+' ',' '-' '.' '/'\ '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' ':' ';' '<' '=' '>' '?'\ '@' 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O'\ Hi Slice Are you still needing this or have you done it in Clover? Sorry to bring up again this thread, but is it possible to integrate the following german letters (so called "UMLAUTE"): ä ; ö ; ü ; Ä ; Ö ; Ü ; ß Hi Mork vom Ork Good job adjusting the script to suit your needs. Does this need implementing for all font files? Link to comment Share on other sites More sharing options...
Mork vom Ork Posted September 13, 2016 Share Posted September 13, 2016 Hi Mork vom Ork Good job adjusting the script to suit your needs. Does this need implementing for all font files? Dear BlackOSX, no, it is no longer needed. was just a try, when i was paying around with my theme. would be too much to implement in every right now available theme. if one needs it, he/she/they could check my post on what to do to get it implemented ;-) But thx 4 asking... 1 Link to comment Share on other sites More sharing options...
Slice Posted September 13, 2016 Share Posted September 13, 2016 Hi Slice Are you still needing this or have you done it in Clover? Hi blackosx, glad to see you. I can live without these characters as I made embedded graphics for this. They could be usefull in TextOnly mode if someone want it. Link to comment Share on other sites More sharing options...
blackosx Posted September 14, 2016 Author Share Posted September 14, 2016 I've uploaded v0.87 of the script to the first post which adds the extra radio button and checkbox glyphs in the font matrix and also added a fix which I hope will resolve the issue Sherlocks is having. Note: The radio button and checkbox glyphs need to be in the font used otherwise they won't show. 3 Link to comment Share on other sites More sharing options...
cecekpawon Posted September 19, 2016 Share Posted September 19, 2016 Hey blackosx, did you forget to apply your "xc" patch to "-t1" (BuildType1() / Chameleon), or this type already deprecated? ./createFont.sh -t1 -s14 -fFont.otf -b 255,255,255 -c 0,0,0 -r c -r a Running ImageMagick to create image convert: no images defined `.../createFont_v0.87/type1_Font_14pt.png' @ error/convert.c/ConvertImageCommand/3253. charWidth=5 Running ImageMagick to splice type 1 image convert: unable to open image '.../createFont_v0.87/type1_Font_14pt.png': No such file or directory @ error/blob.c/OpenBlob/2695. convert: unable to open file `.../createFont_v0.87/type1_Font_14pt.png' @ error/png.c/ReadPNGImage/3983. convert: no images defined `.../createFont_v0.87/type1_Font_14pt.png' @ error/convert.c/ConvertImageCommand/3253. Also, label:\"${spaces}\ no longer needed in my case. Link to comment Share on other sites More sharing options...
blackosx Posted September 20, 2016 Author Share Posted September 20, 2016 (edited) Hey cecekpawon. AFAIK, type 1 is alive and well and not deprecated. I just forgot to add 'xc' to it And thanks for the note about 'label:' no longer being required. I never knew why it was needed in the first place anyhow lol. I'll run some tests and post a revised version when I get a chance. EDIT: I've updated the script to v0.88 to include the xc fix for type 1 fonts. Edited October 14, 2016 by blackosx Link to comment Share on other sites More sharing options...
JahStories Posted January 3, 2017 Share Posted January 3, 2017 Hi guys! Thanks for all your work, the script and the proportional option are awesome!!! Btw I've noticed that the proportional option does work well on every part of clover, but not under options, where it seems to have no effect... Here a screenshot: menu is ok, about is ok, option is messed... Link to comment Share on other sites More sharing options...
Slice Posted January 3, 2017 Share Posted January 3, 2017 Yes, this si designed. Else options will have variable string length. Link to comment Share on other sites More sharing options...
JahStories Posted January 3, 2017 Share Posted January 3, 2017 Sorry, but I don't understand, well I understood that it's meant to be so, but not why... Isn't there a way to have proportional working for options too? Link to comment Share on other sites More sharing options...
Slice Posted January 4, 2017 Share Posted January 4, 2017 Sorry, but I don't understand, well I understood that it's meant to be so, but not why... Isn't there a way to have proportional working for options too? No options to do this. If you want then you can compile own Clover version. Just search "proportional" through sources and comment out a line that switch off proportional for options menu. I can tell you that proportional font is very bad for input values. Link to comment Share on other sites More sharing options...
JahStories Posted January 4, 2017 Share Posted January 4, 2017 Thanks for answering, I can't find the source code :/ Link to comment Share on other sites More sharing options...
Slice Posted January 4, 2017 Share Posted January 4, 2017 Thanks for answering, I can't find the source code :/ Source code of.... Clover? You really can't find it? Link to comment Share on other sites More sharing options...
JahStories Posted January 5, 2017 Share Posted January 5, 2017 Ok, found the source and did all the stuff from terminal do download it, but the project is huge, which is the file I should look for? Sorry but I'm not the best in doing such stuff Link to comment Share on other sites More sharing options...
stevezheng Posted June 3, 2018 Share Posted June 3, 2018 Hi, I want to add Chinese support to Clover F1 interface. The problem I have met is that I need a FontChinese.png like FontKorean.png. I need some help on how to edit createFont.sh to create png which includes Chinese characters. Could someone give me suggestions? This is a sample of FontKorean.png, I want to know how it was been generated. Link to comment Share on other sites More sharing options...
Slice Posted June 10, 2018 Share Posted June 10, 2018 The author was disappeared. You have to do this from initial. Link to comment Share on other sites More sharing options...
CappeXXIII Posted September 9, 2019 Share Posted September 9, 2019 Guys link is broken I want to make Google Sans font for my clover theme, has sameone already make it? Link to comment Share on other sites More sharing options...
Recommended Posts