View Single Post
Old 09-14-2009, 11:00 PM   #1
wallcraft
reader
wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.
 
wallcraft's Avatar
 
Posts: 6,977
Karma: 5183568
Join Date: Mar 2006
Location: Mississippi, USA
Device: Kindle 3, Kobo Glo HD
User Stylesheet for Adobe Digital Editions

In What's the default ADE font?, Peter Sorotokin mentioned that device manufacturers can override the default font (or even make it user-selectable) through a user stylesheet.

In Changing paragraph spacing in DRMed epub?, Who are you? provided instructions for where to put a userStyle.css for the (Windows) Sony eBook Library viewer. It seems that something similar could (should) be available for all versions of ADE. However, so far only the Sony viewer is known to work this way.

In a recent post, which I can't find (so please provide a reference), someone mentioned that a @font-face can override one of the three default font-families (serif, san-serif, monospace). This provides a particularly simple application of a User Stylesheet.

I enclose the following userStyle.css:
Code:
@font-face {
  font-family: "Liberation Sans", sans-serif;
  font-weight: normal;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationSans-Regular.ttf);
}
@font-face {
  font-family: "Liberation Sans", sans-serif;
  font-weight: bold;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationSans-Bold.ttf);
}
@font-face {
  font-family: "Liberation Sans", sans-serif;
  font-weight: normal;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationSans-Italic.ttf);
}
@font-face {
  font-family: "Liberation Sans", sans-serif;
  font-weight: bold;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationSans-BoldItalic.ttf);
}
@font-face {
  font-family: "Liberation Serif", serif;
  font-weight: normal;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationSerif-Regular.ttf);
}
@font-face {
  font-family: "Liberation Serif", serif;
  font-weight: bold;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationSerif-Bold.ttf);
}
@font-face {
  font-family: "Liberation Serif", serif;
  font-weight: normal;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationSerif-Italic.ttf);
}
@font-face {
  font-family: "Liberation Serif", serif;
  font-weight: bold;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationSerif-BoldItalic.ttf);
}
@font-face {
  font-family: "Liberation Mono", monospace;
  font-weight: normal;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationMono-Regular.ttf);
}
@font-face {
  font-family: "Liberation Mono", monospace;
  font-weight: bold;
  font-style:  normal;
  src: url(res:///adobe/fonts/LiberationMono-Bold.ttf);
}
@font-face {
  font-family: "Liberation Mono", monospace;
  font-weight: normal;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationMono-Italic.ttf);
}
@font-face {
  font-family: "Liberation Mono", monospace;
  font-weight: bold;
  font-style:  italic;
  src: url(res:///adobe/fonts/LiberationMono-BoldItalic.ttf);
}
Go to C:\Program Files\Sony\Reader\Data\bin and create the path adobe\pxf\ there and put userStyle.css in there to override default epub styles. In this case only the default fonts are redefined, and all 12 .ttf files need to go in C:\Program Files\Sony\Reader\Data\bin\adobe\fonts. I got the fonts from https://fedorahosted.org/releases/l/...1.20090721.zip. You can obviously use any fonts you have legal access to. Also, you don't need to provide bold, italic, and bolditalic versions if they are not available (or you don't want to).

The attached screenshots show TEST_defaultfonts.epub with this userStyle.css active. Unlike with the original default fonts, the Liberation fonts have explicit bold, italic, and bolditalic versions which are being correctly displayed here.

There is obviously other things that can go into userStyle.css, which has the advantage that it can be applied to all DRMed ePubs. In my opinion, all implementations of ADE should allow and document the addition of userStyle.css and user-defined fonts.
Attached Thumbnails
Click image for larger version

Name:	Sony_font5.jpg
Views:	1157
Size:	142.4 KB
ID:	35880   Click image for larger version

Name:	Sony_font6.jpg
Views:	1039
Size:	146.2 KB
ID:	35881   Click image for larger version

Name:	Sony_font7.jpg
Views:	981
Size:	150.2 KB
ID:	35882   Click image for larger version

Name:	Sony_font8.jpg
Views:	973
Size:	157.0 KB
ID:	35883  
Attached Files
File Type: zip userStyle.css.zip (369 Bytes, 816 views)
wallcraft is offline   Reply With Quote