View Single Post
Old 06-13-2010, 05:21 AM   #22
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,557
Karma: 19500001
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by brewt View Post
BasicSet.epub - epub created by calibre with embedded fonts embeddeed by above plugin and encrypted by above python script. [Keep ligatures] checked in conversion. Results below are the same before and after encryption.
As far as I know, calibre does not support font encryption/obfuscation.

Looking at the differences between your css and the one I use (which works with calibre):

Yours:
Code:
@font-face {
  font-style: normal;
  font-family: 'Minion Pro', serif;
  font-weight: normal;
  src: url(MinionPE.otf);
}
Mine:
Code:
@font-face {
  font-family: "Carolus FG";
  src: url("../fonts/CAROF___.TTF") format("truetype");
}
You could try something like:

Code:
@font-face {
  font-family: 'Minion Pro';
  src: url(MinionPE.otf) format('opentype');
}
and see if that helps.
Jellby is offline   Reply With Quote