473,657 Members | 2,535 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Determine which fonts are Human Readable

I need to determine which fonts are human readable.
Webdings, wingdings etc.. are not.
Is there any easy way to accomplish this?
Cheers
JB
Nov 16 '05 #1
4 2954
John,
I need to determine which fonts are human readable.
Webdings, wingdings etc.. are not.
Is there any easy way to accomplish this?


Short of building a neural network trained to recognize whether a set of
characters is "human readable" or not, I would simply create an object that
knows which fonts are not readable. Then in my program, I would ask that
object if the font of interest "IsReadable ( )." If it is not one of the
non-readable fonts, then my program would assume it is readable and answer
yes it is readable.

I tend to take the most simple approach when faced with these kinds of
programming issues. If you need help on the neural network solution, let me
know, but plan on spending a bit of time developing it.

I know that doesn't help much, but I hope it helps a little.

Regards,

Randy
Nov 16 '05 #2

"Randy A. Ynchausti" <ra************ *@msn.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
John,
I need to determine which fonts are human readable.
Webdings, wingdings etc.. are not.
Is there any easy way to accomplish this?
Short of building a neural network trained to recognize whether a set of
characters is "human readable" or not, I would simply create an object

that knows which fonts are not readable. Then in my program, I would ask that
object if the font of interest "IsReadable ( )." If it is not one of the
non-readable fonts, then my program would assume it is readable and answer
yes it is readable.
I was hoping you wouldnt say that :)

I had hoped that someone would have defined somewhere how to determine
whether a font was HR or not.

I suppose you could read wingdings and webdings anyway, if you took the time
to learn them :)
I tend to take the most simple approach when faced with these kinds of
programming issues. If you need help on the neural network solution, let me know, but plan on spending a bit of time developing it.
I suppose I could write a solution to analyze a specific letter in a
particular font and determine whether it conforms with a HR font or not. "W"
is quite hard to mistake.
I think I will have to go your route though, the only problem is this wont
cater for any "extra" fonts on clients machines.

Cheers
JB
I know that doesn't help much, but I hope it helps a little.

Regards,

Randy

Nov 16 '05 #3
Another complication is human-readable by who? For example, on my XP
machine I have the fonts @SimHei and @SimSun, neither of which I can read
because they're Chinese, but to a Chinese person Courier New will be
unreadable.

Best Regards
Julian Nicholls

"John Baro" <jo***@NixSpaMi primus.com.au.c om.au> wrote in message
news:2h******** ****@uni-berlin.de...
I need to determine which fonts are human readable.
Webdings, wingdings etc.. are not.
Is there any easy way to accomplish this?
Cheers
JB

Nov 16 '05 #4
I just had another, far more useful, thought :-)

If you look at the charset setting of the font, you will discover that fonts
like WingDings and Webdings are SYMBOL_CHARSET which is a bit of a giveaway
for not being human-readable text, and the @SimHei and @SimSun fonts
mentioned in my other post are GB3212_CHARSET.

Other CHARSET possibilities include

ANSI_CHARSET, BALTIC_CHARSET, CHINESEBIG5_CHA RSET,
DEFAULT_CHARSET , EASTEUROPE_CHAR SET, GB2312_CHARSET,
GREEK_CHARSET, HANGUL_CHARSET, MAC_CHARSET,
OEM_CHARSET, RUSSIAN_CHARSET , SHIFTJIS_CHARSE T,
TURKISH_CHARSET , VIETNAMESE_CHAR SET,
JOHAB_CHARSET, ARABIC_CHARSET,
HEBREW_CHARSET, THAI_CHARSET

All the Best
Julian Nicholls
"John Baro" <jo***@NixSpaMi primus.com.au.c om.au> wrote in message
news:2h******** ****@uni-berlin.de...
I need to determine which fonts are human readable.
Webdings, wingdings etc.. are not.
Is there any easy way to accomplish this?
Cheers
JB

Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2166
by: aj | last post by:
DB2 WSE 8.1 FP5 Red Hat Linux AS 2.1 I am working on a Java-Swing based interface for a DB2 database, and want to display more human-readable error meesages to the end user when/if a database exception occurs. I am using the type 4 Universal JDBC driver. If I have an SQLCODE & SQLSTATE, where do I look to get a human readable/comprehensive error message to show the end-user? I
258
8590
by: Terry Andersen | last post by:
If I have: struct one_{ unsigned int one_1; unsigned short one_2; unsigned short one_3; }; struct two_{ unsigned int two_1;
12
7823
by: Sunner Sun | last post by:
Hi, all Since the OS look both ASCII and binary file as a sequence of bytes, is there any way to determine the file type except to judge the extension? Thank you!
9
19522
by: Adam | last post by:
Can someone please help!! I am trying to figure out what a font is? Assume I am working with a fixed font say Courier 10 point font Question 1: What does this mean 10 point font Question 2: How do I determine how many characters I can get on a line Question 3: How do I determine how many lines I can get on a page. Assume no margins Question 4: Does their exist some kind of refernce table that will equate a font with chars/line and...
5
2780
by: mphanke | last post by:
Hi, can somebody tell me how to convert the date from a Paradox .DB to human readable format? I need to write a tool to convert the 4 Bytes representing the date to a human readable format. Thanks for your help,
12
2337
by: ctclibby | last post by:
Hi all Have a customer that wants a specific font included in her web page design; Comic Sans MS. This is one of the MS core fonts. The problem I have is that some of the *nix browsers do NOT include these fonts by default. http://www.diamondvet.com/test renders those fonts correctly using an XP box. After I installed those fonts on my machine, firefox and mozilla both rendered them correctly. So here is the question:
70
15005
by: axlq | last post by:
I'm trying to design my style sheets such that my pages have similar-looking fonts different platforms (Linux, Mac, Adobe, X-Windows, MS Windows, etc). The problem is, a font on one platform might be the same as a font on another platform, but with different names. I'd like to be able to specify the font names that are "most equivalent." For example, "Lucida Console" is a very attractive and readable monospaced font available in...
8
3230
by: Joe | last post by:
Hi trying to write some code to determine if user has large/small fonts set on PC thought this would work but it didn't Any suggestions??? Thanks Graphics g = Graphics.FromHwnd(this.Handle);
5
2219
by: =?Utf-8?B?bGpsZXZlbmQy?= | last post by:
Is there any way to do the following: 1. Determine whether ClearType is enabled by the system (under Display Properties - Effects in WinXP). 2. Determine whether a font supports ClearType. Thanks for any help! Lance
0
8392
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8823
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8726
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8603
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4301
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1604
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.