Quote:
Originally Posted by jackie_w
The file DroidSansFallback.ttf is already in your T1 in an area which is not user-visible. You do not need to copy it. You access it via
Code:
src:url(res:///ebook/fonts/DroidSansFallback.ttf)
in the epub css, not
Code:
src:url(res:///Sony_Reader/data/fonts/DroidSansFallback.ttf)
|
Doh! I feel a bit silly now. The only thing to make it display Chinese EPUB I had to do was, open the EPUB and add:
Code:
@font-face {
font-family: "DroidSans", serif, sans-serif;
src:url(res:///ebook/fonts/DroidSansFallback.ttf);
}
That's all!
Thank you so much / 谢谢你!