vote up 1 vote down star
1

Is there anyway to use unicode strings (most probably in UTF-8, but could be any encoding) in PostScript?

So far, i've been using this function to transforms fonts to Latin1 encoding:

/latinize {
  findfont
  dup length dict begin
  { 1 index /FID ne {def}{pop pop} ifelse }forall
  /Encoding ISOLatin1Encoding def
  currentdict
  end
  definefont pop
}bind def

/HelveLat /Helvetica latinize
/HelveLatbold /Helvetica-Bold latinize

but i really don't like it.

flag

50% accept rate

1 Answer

vote up 2 vote down

Not really or in any simple "out of the box" way. See this FAQ entry for details.

link|flag
tks, it's really awkward, and something plaftorm-dependent (on top of font-dependent); but so far it's the only step in the right direction i've seen – Javier May 28 at 14:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.