almost done, kerning todo
[librarian.git] / librarian / cover.py
index 8b770ca..ff01841 100644 (file)
@@ -258,7 +258,6 @@ class WLCover(Cover):
         super(WLCover, self).__init__(book_info, format=format, width=width, height=height)
         self.kind = book_info.kind
         self.epoch = book_info.epoch
-        self.with_logo = with_logo
         if book_info.cover_url:
             url = book_info.cover_url
             bg_src = None
@@ -436,3 +435,12 @@ class GandalfCover(Cover):
     logo_bottom = 25
     logo_width = 250
     format = 'PNG'
+
+class FutureOfCopyrightCover(Cover):
+    width = 420
+    height = 595
+    background_img = 'cover.png'
+    format = 'PNG'
+    
+    def save(self, dest):
+        dest.write(open(self.background_img).read())