Does anyone know if it's possible to use OpenType features in ImageMagick or GraphicsMagick? Specifically, I'm looking to use glyphs that are not assigned to Unicode points (glyphs are sometimes placed outside of the Unicode range, since they are intended to act as embellishments to other characters). In OpenType-aware desktop applications, you would usually need to open a glyph table and select the glyph manually; I'm not sure how you would do this using ImageMagick.
I'm afraid, such advanced (and also: somehow obscure) OTF features are NOT (yet) supported by ImageMagick -- at least there's nothing in the available documentation (I don't know about GraphicsMagick).
But your best option to get a definitive, authoritative answer from the developers themselves is: register here and ask again on the official ImageMagick Users list.
In short, how advanced is unicode support in browsers and operating systems?
Unicode support is, in general, rather widespread. The main problem here is probably that most fonts don’t contain the EJECT SYMBOL character. According to the font support page at fileformat.info, the character exists only in a small set of fonts, none of which is probably shipped with an operating system or other commonly used software. So the user would need find, download, and install a font that contains the character, unless you use font embedding.
I'm looking for some tools that could be used by human translators during the process of translating our GWT application into other languages.
Currently, we have the English version of .properties files containing constants and messages, and need create the files for other languages. This tool should be easy to use, so even non-IT-lover can master it.
Or, do you suggest other method for translation of the texts?
I heard the "community" approach becomes quite popular, by that I mean that one uploads his texts to some (?) forum, and the community there creates the translations into other language - but as I said, I don't know much about this
Are there any online platforms for this purpose?
any other ideas?
See my SO answer for VB 6 source code, speech text is in french want to translate to english. The same answer works if you replace the computer langauge "VB6" by "JavaScript".
Closed. This question is off-topic. It is not currently accepting answers.
Closed 11 years ago.
Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions.
I'm looking for a good programming font that lets me add comments and string literals in Unicode, usually Japanese and Chinese along with some Latin and Cyrillic languages.
So far the situation seems to be "complete, monospace, free, pick 2" and Google is failing me with this (maybe because there are no good ones?).
The best I found is Arial Unicode but it's not monospace, which is a big nuisance for me and the editors I use. Not to mention Python indentation when I'm coding Python.
(Links, edits are welcome)
Unicode is big. Really big. You just won't believe how vastly hugely mind-bogglingly big it is. I mean, you might think it's a long way down the codepage to ü, but that's just peanuts to Unicode.
I really doubt there's any font in the world (monospaced or not) that has "complete" Unicode. The best you can do is find a few monospaced fonts that, together, cover the space you're interested in, and make sure your editor is set up to use them.
The best I've found is DejaVu Sans Mono which is a Unicode expansion of Bitstream's Vera Sans Mono.
I'm not sure there are any 'complete' fonts, so I think you'll have to deal with a patchwork of fonts.
GNU Unifont is a monospaced, bitmapped font with complete coverage of the Basic Multilingual Plane as defined in Unicode 5.1. It is also avaiable in True Type format.
How about Consolas? Should be lying around on most windows boxes by now.
If not it can be downloaded here:
http://www.microsoft.com/down...lang=en
It does look ugly without ClearType enabled though.
Before Consolas, I always used Andale Mono as my programmer font. There's a free download available.
I'm trying to answer this question for myself, for use in Eclipse editor.
MS ゴシック (MS Gothic) is what I'm currently trying, and that seems to be pretty good for the Japanese characters I'm dealing with. Included in Windows since 2000.
One could be constructed from the Unicode Consortium's published CodeCharts.pdf by font extraction via FontForge. However:
Legal issues would be a serious consideration.
The extracted fonts do not align their characters to unicode code points, but rather place them at various points sometimes in order, sometimes haphazardly. Remapping them is a chore (but orders of magnitude easier than creating a font from scratch).
Character combining, etc., logic is complex (I'd personally prefer a dumb uncombined font, with one visual position per codepoint, and display them just like on the codepages).
GNU Unifont does indeed have the complete Unicode BMP. unfortunately the UTF8 map has about 16 times as many characters, including some CJK extensions. My advice is to download Unifont and add the other characters you need by hand or by copying them from another font.
Actually I find monospaced fonts to be a nuisance when I have to read them so I use Tahoma or even Georgia for my source code. I have a very verbose coding style (an instance of type AstractModemConnector is named abstractModemConnector) so my source code looks almost like English and is perfectly readable with a proportional font.
Our installation program is written using InstallShield2009, and as part of certification requirements we have to support Unicode throughout.
The application itself is .NET, so supports Unicode natively, however on testing our installation with a Chinese character set we can see problems thrown up by InstallShield dialogs.
Having done a quick google, I found one related post whereby someone has deemed there is no unicode support in IS2008.
I have also emailed Acresso directly, but being the caring developer I am, thought I'd post the question here for future reference, in case anyone else has the same problem.
If anyone has encountered this problem in the past, any help would be appreciated. Thanks.
Turns out that IS2009 does NOT fully support Unicode, as it cannot handle paths containing (amongst others) Japanese characters.