Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Embedded Fonts - Where are they now? (http://www.velocityreviews.com/forums/t623131-embedded-fonts-where-are-they-now.html)

DamienS 07-01-2008 12:12 AM

Embedded Fonts - Where are they now?
 
Hi,

After many years of using html/css/asp etc for the first time I've had
a requirement to use a custom font in a website. "That shouldn't be
too hard" thought I, "that would be a pretty common thing to want to
do, surely there's a million solutions to it".

Anyway - jumping into Google I was surprised at what I found. As far
as I can tell, "embedded fonts" came about circa early 90's that
involved packaging fonts into some sort of binary that was downloaded
to the browser, however due to compatibility and legal issues with the
typographers, the whole thing fell in a heap.

So - my question is, where are we now? Using ASP 3.5 in 2008, is there
some practical, 'real world' solution? Or, do I need to go to my
marketing manager with bad news?

Thanks very much in advance,



DamienS

bruce barker 07-01-2008 03:15 AM

Re: Embedded Fonts - Where are they now?
 
you are too early to the party.

w3c has been working on a solution since 2.0, but it went away in 2.1,
now css 3.0 defines a rule for font-faces:

http://www.w3.org/TR/css3-webfonts/#font-descriptions

currently the only browser supporting @font-faces is the open source
webkit (safari)

ie has a proprietary method:

http://www.microsoft.com/typography/...bedding/weft3/

the most common approach is to just use an image to get the correct font.

-- bruce (sqlwork.com)


DamienS wrote:
> Hi,
>
> After many years of using html/css/asp etc for the first time I've had
> a requirement to use a custom font in a website. "That shouldn't be
> too hard" thought I, "that would be a pretty common thing to want to
> do, surely there's a million solutions to it".
>
> Anyway - jumping into Google I was surprised at what I found. As far
> as I can tell, "embedded fonts" came about circa early 90's that
> involved packaging fonts into some sort of binary that was downloaded
> to the browser, however due to compatibility and legal issues with the
> typographers, the whole thing fell in a heap.
>
> So - my question is, where are we now? Using ASP 3.5 in 2008, is there
> some practical, 'real world' solution? Or, do I need to go to my
> marketing manager with bad news?
>
> Thanks very much in advance,
>
>
>
> DamienS


DamienS 07-01-2008 06:01 AM

Re: Embedded Fonts - Where are they now?
 
Thanks Bruce. That's a big help.

> the most common approach is to just use an image to get the correct font.


Sure. The site had a lot of 'body' text in this font though... I guess
that we'll just have to find another one that will do.

Thanks again,


Damien

Mark Fitzpatrick 07-01-2008 01:50 PM

Re: Embedded Fonts - Where are they now?
 
Microsoft created a tool called WEFT, Windows Embedded Font Technology,
which is available through http://www.microsoft.com/typography. The problem
is: it only works with IE, users still need to download the font, the page
size increases with the font. In my experience, end-users hate this. They
don't want to install an extra anything to view one single web site and may
receive warnings because it's binary data so their anti-virus may get
involved to check it out. Best bet though, don't bother. If you need custom
fonts you should see if you can focus them into a particular area that could
be created into a graphic. This keeps it from requiring special extras,
works cross-browser, and limits the annoyance factor as many users like
seeing certain standard fonts, and once an embedded font gets used in one
spot it tends to creep throughout the site.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - Expression

"DamienS" <damiensawyer@yahoo.com.au> wrote in message
news:a49a6b5d-e848-4cac-a006-5fce82e21476@d19g2000prm.googlegroups.com...
> Hi,
>
> After many years of using html/css/asp etc for the first time I've had
> a requirement to use a custom font in a website. "That shouldn't be
> too hard" thought I, "that would be a pretty common thing to want to
> do, surely there's a million solutions to it".
>
> Anyway - jumping into Google I was surprised at what I found. As far
> as I can tell, "embedded fonts" came about circa early 90's that
> involved packaging fonts into some sort of binary that was downloaded
> to the browser, however due to compatibility and legal issues with the
> typographers, the whole thing fell in a heap.
>
> So - my question is, where are we now? Using ASP 3.5 in 2008, is there
> some practical, 'real world' solution? Or, do I need to go to my
> marketing manager with bad news?
>
> Thanks very much in advance,
>
>
>
> DamienS



DamienS 07-01-2008 10:38 PM

Re: Embedded Fonts - Where are they now?
 
Cheers Mark. Much appreciated.

On Jul 1, 11:50*pm, "Mark Fitzpatrick" <markf...@fitzme.com> wrote:
> Microsoft created a tool called WEFT, Windows Embedded Font Technology,
> which is available throughhttp://www.microsoft.com/typography. *The problem
> is: it only works with IE, users still need to download the font, the page
> size increases with the font. In my experience, end-users hate this. They
> don't want to install an extra anything to view one single web site and may
> receive warnings because it's binary data so their anti-virus may get
> involved to check it out. Best bet though, don't bother. If you need custom
> fonts you should see if you can focus them into a particular area that could
> be created into a graphic. This keeps it from requiring special extras,
> works cross-browser, and limits the annoyance factor as many users like
> seeing certain standard fonts, and once an embedded font gets used in one
> spot it tends to creep throughout the site.
>
> Hope this helps,
> Mark Fitzpatrick
> Microsoft MVP - Expression
>
> "DamienS" <damiensaw...@yahoo.com.au> wrote in message
>
> news:a49a6b5d-e848-4cac-a006-5fce82e21476@d19g2000prm.googlegroups.com...
>
>
>
> > Hi,

>
> > After many years of using html/css/asp etc for the first time I've had
> > a requirement to use a custom font in a website. "That shouldn't be
> > too hard" thought I, "that would be a pretty common thing to want to
> > do, surely there's a million solutions to it".

>
> > Anyway - jumping into Google I was surprised at what I found. As far
> > as I can tell, "embedded fonts" came about circa early 90's that
> > involved packaging fonts into some sort of binary that was downloaded
> > to the browser, however due to compatibility and legal issues with the
> > typographers, the whole thing fell in a heap.

>
> > So - my question is, where are we now? Using ASP 3.5 in 2008, is there
> > some practical, 'real world' solution? Or, do I need to go to my
> > marketing manager with bad news?

>
> > Thanks very much in advance,

>
> > DamienS- Hide quoted text -

>
> - Show quoted text -




All times are GMT. The time now is 06:25 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.