The shape of a character as rendered (e.g in a font)

learn more… | top users | synonyms

1
vote
2answers
16 views

How to code the value of input[type=“submit”] that validates

Two questions What is the best way to encode the rarer characters for form element values? Is the semi-colon in the example below causing the validation error or is it something else? HTML ...
2
votes
0answers
28 views

In d3 is it possible to dynamically change where a path position starts for tweening?

to: clarify. Picture a circle. We start drawing the circle from a particular coordinate. Now lets draw the circle starting from another coordinate. I am playing with path data derived from SVG glyphs ...
0
votes
2answers
98 views

How To Print Glyph Elements in WinRT

I am trying to print a Canvas with Path, TextBlock and Glyph elements on it, however the Glyphs are excluded in the printed content. This is eerily similar to the exact same problem with Silverlight 5 ...
1
vote
2answers
135 views

CSS Content special character : Hex vs normal character

Example 'BLACK STAR' ★ (U+2605) .a:after { content: "\2605"; position:absolute; } .b:after { content: "★"; position:absolute; } Demo : http://jsfiddle.net/l2aelba/vBjxX/ Why ...
0
votes
0answers
20 views

Do we require any specific css to access ccmp font feature?

I have been trying to make an arabic font and it is almost done. Now the problem I have been facing is that font-feature ccmp (composition/decomposition) which is supposed to be on by default in all ...
1
vote
3answers
55 views

How to “decode” eexec of font file?

I have a .pfa font file and I would like to read the "algorithm" for rendering the font. However, most of the information is hidden in binary in the line: currentfile eexec ...
2
votes
1answer
144 views

Number of characters in a string (not number of bytes) [duplicate]

In a string in objective-c if I say something like [myStr length]; it returns a number which is the number of bytes but what can I use to return the number of characters in a string. For example: a ...
0
votes
0answers
98 views

SVG font glyphs: ever seen contained path's?

I have a source of SVG files created by program potrace, which has created a separate for each component of a multi-segment character. If I simple-mindedly create glyph definitions using these same ...
0
votes
2answers
80 views

Rational for the small gap between the glyph bounding box and the glyph origin

In adobe's pdf 1.7 page 241 you can see a small difference between the glyph bounding box and the glyph's origin. Any idea why there is this difference? This question is related to another question
1
vote
1answer
154 views

Text rotation in PDF

So I have this situation: using pdftoxml.exe from sourceforge.net I got text tokens and their coordinates. If the pdf file was rotated (i.e. it has a /Rotate 90 written in its source) pdftoxml.exe ...
2
votes
2answers
231 views

Downsizing an .OTF font by removing glyphs

I can't quite believe this question hasn't been asked specifically for OpenType fonts, but does anyone know of a way to remove glyphs from these fonts? I have an .OTF with a very large file-size ...
1
vote
2answers
236 views

UTF-8: how many bytes are used by languages to represent a visible character? [closed]

Does there exist a table or something similar which shows how many bytes different languages need on average to represent a visible character (glyph) when the encoding is utf8?
0
votes
1answer
572 views

icon fonts - icomoon - @font-face not showing when on different server

When I first downloaded the icons they worked in all browsers. However now its live and the fonts live on a different server, it doesn't work in IE or Firefox but is fine in Chrome and Opera. Anyone ...
1
vote
1answer
466 views

Languages supported by “latin” vs “latin-extended” glyphs in fonts on Google Web Fonts?

Some fonts on Google Web Fonts support multiple "character sets". The thing is, if the web font I use only serves the "latin" glyphs, users who translate the page to a language whose glyphs aren't ...
1
vote
0answers
104 views

Outline of a text as single line vector path

For an application I need to draw text/glyphs as a vector based path. Using GDI+ GraphicsPath and Graphics.DrawPath or WPF FormattedText and Geometry works fine and I get the output as shown in the ...
2
votes
2answers
112 views

Is there a “glyph not found” character?

Let's assume we have a text that contains a Unicode character that cannot be displayed because our font has no corresponding glyph. Usually, a placeholder is displayed instead, e.g. a rectangular ...
0
votes
1answer
100 views

Java : how to get shape of character (not outline)

Is there any way to get the "shape" representing a character using Java. I know about the getOutling() of the GlyphVector class. But it returns the outline of the character. What I require is not ...
1
vote
1answer
37 views

Is it possible to generate glyphs for the Linux terminal on the fly? [closed]

For example, Impulse Tracker for DOS was a nice music production app that was among the first to create a smooth mouse using glyphs generated on the fly in the characters located near the current ...
0
votes
0answers
40 views

FontForge Gylph name

Hi using font forge in windows when i load the font file it creates glyph name for each glyph in font file. My area of interest is how this name are generated in fontforge?
2
votes
0answers
231 views

Display glyph from font file

Working on one windows application (.Net 4.0) which will accept font file name as input and will return images for each glyph in font. Tried all possible Google stuff but not getting all glyph s ...
0
votes
1answer
262 views

How can I wrap a glyphicon with twitter bootstrap?

How can I wrap a glyphicon and a word together so that the icon is centered over or under the word. For an example: <div class="row"> <div class="span4"> <div style="font-size: ...
1
vote
0answers
98 views

WPF GlyphRuns and context-dependent characters

I am trying to render Arabic text in WPF at Glyph level, on a character-by-character basis. Rendering Latin text was easy, each character simply translates to a Unicode codepoint and I used ...
1
vote
2answers
314 views

How to force conversion of glyphs to embedded vector paths in Inkscape

I have created an SVG document with Inkscape. It contains text in a non-standard font. The svg xml references the font. So, the vector has a dependency on the font being available on the users ...
0
votes
2answers
181 views

Android Issue displaying special characters

Im having an issue displaying special characters. I was told there was an error in the encoding. Im running the application on the test devices I have, and I mot getting this error. The person ...
0
votes
0answers
37 views

Rendering text by referencing glyph names instead of encoding slots

I'm currently using ImageMagick to render text. However, ImageMagick is limited because (as far as I know) it will only render glyphs that are encoded. Many fonts contain glyphs that are not encoded ...
0
votes
1answer
162 views

Is it possible to use glyph Designer with Xcode storyboards?

I was wondering if you could use Glyph Designer to create a cool font and then use it in an Xcode Storyboard. I know you can use it with cocos2d, but I want to use it in my TableViewCells and ...
0
votes
2answers
282 views

How to find exact size for an arbitrary glyph in WPF?

I need to find exact size for each character in an arbitrary font. The font is loaded using GlyphTypeface class. The problem is that I can access directly only width of a glyph using the ...
2
votes
0answers
178 views

Getting the bounding box of each glyph in pdf - iOS

I've been trying to highlight text in a pdf. After a lot of research and experiments, it seems like I have to find the bounding box of each glyphs, create an overlay where the actual drawing is ...
0
votes
1answer
139 views

cufon glyphs support

I have a problem with cufon and a few Turkish glyphs. This is the context: I used the @font-face property to embed the custom font (Delicious-Roman) on a website. The client didn't like the fact ...
3
votes
3answers
320 views

how to change glyph height without changing the font-size?

Issue for text elements that are adjacent to icon elements, the glyph height is not aligned with the icon height. the text elements are styled by CSS with font-size: 20px; and have consistent width ...
1
vote
1answer
436 views

Creating custom fonts

I developed a game with Cocos2D a while back, and used Glyph Designer Is it possible to use Glyph Desiger with a non-cocos2d project, or is there any other framework you can use to make custom bitmap ...
5
votes
1answer
339 views

How to get UIBezierpath using Glyph in iOS SDK

How can we get UIBezierPath from a character using Glyph in iOS SDK. I had gone through this, but It is showing double line and I want only single line.. As I am new in this research..Please help me ...
0
votes
1answer
475 views

Draw chinese font glyphs with Quartz 2D?

I have to show Chinese characters with the function: CG_EXTERN void CGContextShowGlyphsAtPoint(CGContextRef context, CGFloat x, CGFloat y, const CGGlyph glyphs[], size_t count) But it doesn't show ...
1
vote
1answer
293 views

Rasterize TrueType Character Glyph Data

I have a character's glyph data from the glyf table in a TrueType font file. This data is represented as a block of decimal numbers. Example: character 'a' in Calibri 11pt (Glyph Index 258) ...
1
vote
1answer
90 views

Can I use a number as the shape icon used to display points on an XYPlot in JFreeChart?

I have three time series that I'm plotting, and I would like to use the numbers 1, 3, and 5 as the actual shapes that the XYLineAndShapeRenderer use to display the series. Even if you have no ...
0
votes
1answer
249 views

Rendering fonts in Java: java.awt.Font doesn't behave correctly

What I've encountered so far is what I can think of a "bug" in Oracle's font rendering libraries in Java. In certain fonts (like fonts embedded in PDF files), some irregular character codes are used ...
2
votes
1answer
238 views

How to create custom font at runtime using NSFont

I'm writing a Mac application that needs to be able to create, load, and use custom fonts at runtime using Cocoa. I've researched the NSFont class thoroughly, and all I can find is API's to load ...
7
votes
3answers
1k views

Determining exact glyph height in specified font

I have searched a lot and tried much but I can not find the proper solution. I wonder is there any approach for determining exact glyph height in specified font? I mean here when I want to ...
0
votes
1answer
104 views

What are these numbers (ASCII or ?)?

After reading an article about fonts, i tried the code and i am getting same results as show in the article but i can't figure out what those numbers XXX:XXX represent. Are they ascii values or what? ...
1
vote
1answer
361 views

How can I solve jukto(connected) words in Bangla font in Android?

Here is my code for Bangla in Android: package com.exam; import android.app.Activity; import android.graphics.Typeface; import android.os.Bundle; import android.widget.TextView; public class ...
4
votes
1answer
373 views

Is there a list of characters that look similar to English letters?

I’m having a crack at profanity filtering for a web forum written in Python. As part of that, I’m attempting to write a function that takes a word, and returns all possible mock spellings of that ...
4
votes
0answers
218 views

Memory leak in Font Glyph / UIWebView

I just found that when UIwebview get dealloc-ed, most of the memory it used doesn't get totally recycled. After doing some profile, i found most of the still alive memory are Font glyph cache(the ...
0
votes
1answer
461 views

How do you draw a particular glyph using Java on Android?

I have seen http://docs.oracle.com/javase/1.5.0/docs/api/java/awt/font/GlyphVector.html but I don't know how you would use it to display a glyph on the screen. Lets say you want to print glyph number ...
1
vote
0answers
284 views

Vector Printing Glyphs in Silverlight 5

I am trying to print a Canvas that contains a glyph element using Silverlight 5's vector printing capacity. Everything works fine except that glyphs do not get printed. Are glyphs supported by vector ...
0
votes
1answer
135 views

What code is being used here for use with fonts and glyphs?

I was looking through some of the files used in Vexflow and I'm trying to add new glyphs for the score however, I don't know what code is being used here in the vex.flow.font.js file: Vex.Flow.Font = ...
1
vote
1answer
511 views

Custom treeview draw bug on mouseover collapse/expand glyph

I'm overiding the node draw event for a treeview in draw all mode such as the code below. Protected Overrides Sub OnDrawNode(ByVal e As System.Windows.Forms.DrawTreeNodeEventArgs) Try ...
1
vote
1answer
178 views

Java library for get letter synonym / similar glyph

I would like to know whether there is a library which allows characters to get their synonyms? something like: char c = getNextChar(); if (c == latin.H || c == cyrillic.H) { //... }
3
votes
1answer
193 views

How do I determine the fallback font for Pango?

I'm rendering some text using pangomm, but the font that I am using doesn't have glyphs for parts of the text (in this case, there is some Japanese mixed in with English). Pango seems to render the ...
1
vote
1answer
276 views

How to get a glyph as vectors

I'm aware of the GlyphTypeface.GetGlyphOutline() in WPF but what I need is to get a center-vector of each glyph, like the lines you draw with a pencil. Is this possible somehow using the existing ...
1
vote
3answers
171 views

Text update slowing down app

I have a Hebrew calendar app where each day is a UserControl. I have 6 labels in that control for the English date, the Hebrew date, Jewish holidays and some other user-defined data. When scrolling, ...

1 2