Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 05-01-2011, 08:07 PM   #1
Padr49904
Junior Member
Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.
 
Posts: 4
Karma: 1738
Join Date: May 2011
Device: Nook Classic
Cover Image

I have been using Sigil for a while and was wondering about how to insert the cover image that will correctly fill the screen on my Nook Classic. When I tried to make the cover the size of the nook it adds a white page after the cover.
I have looked at other books and the cover's are full screen on the nook and in Sigil they are stretched over the entire section.
Is there a way to add a picture that will auto detect the device and make it the correct size for the page?
Padr49904 is offline   Reply With Quote
Old 05-01-2011, 08:16 PM   #2
Padr49904
Junior Member
Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.
 
Posts: 4
Karma: 1738
Join Date: May 2011
Device: Nook Classic
Nvm, found the right coding, can someone delete this entire thread?
Padr49904 is offline   Reply With Quote
 
Enthusiast
Old 05-01-2011, 09:09 PM   #3
theducks
Staff to 4 Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 10,953
Karma: 2574555
Join Date: Aug 2009
Location: The (original) Silicon Valley, USA
Device: Galaxy Tab 2,Black Astak PEz, K4NT(now Wifes)
Quote:
Originally Posted by Padr49904 View Post
Nvm, found the right coding, can someone delete this entire thread?
MR's policy is to leave threads. You can edit your own posts down to almost nothing, but the headers stand.
__________________
Using: Ubuntu(32 bit):Oneric,Precise and XPpro SP3, W7HP(64)- - Libre Office w/Writer2EPUB
theducks is online now   Reply With Quote
Old 05-02-2011, 05:26 AM   #4
Perkin
Fanatic
Perkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane AustenPerkin has memorized the entire works of Homer, Shakespeare, and Jane Austen
 
Perkin's Avatar
 
Posts: 557
Karma: 23783
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300
How about posting the code you used, so anyone who later has a similar problem can find a solutioun easier
Perkin is offline   Reply With Quote
Old 05-02-2011, 02:36 PM   #5
Padr49904
Junior Member
Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.
 
Posts: 4
Karma: 1738
Join Date: May 2011
Device: Nook Classic
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="100%" preserveAspectRatio="none" version="1.1" viewBox="0 0 343 500" width="100%">
<image height="500" width="343" xlink:href="../Images/cover.jpeg"></image>

The cover.jpeg needs to be changed to what the actually picture you are using is and this coding going right after <body>. I fight it easier just to copy this before the picture name and then add the </image> after the image name.
The height and width need to be adjusted, besides just where it says the height and width the numbers need to be replaced after the viewBox="0 0.
So if an image is 600x760 then after the 0 0 it needs to say 600 760 and the height needs to be set as 760 and the width as 600.
So the new coding would look like:

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="100%" preserveAspectRatio="none" version="1.1" viewBox="0 0 600 760" width="100%">
<image height="760" width="600" xlink:href="../Images/cover.jpeg"></image>

Last edited by Padr49904; 05-02-2011 at 02:44 PM. Reason: figured the width and height out
Padr49904 is offline   Reply With Quote
Old 05-02-2011, 07:46 PM   #6
mvo
Member
mvo began at the beginning.
 
Posts: 20
Karma: 10
Join Date: Jan 2011
Location: New Zealand
Device: Kindle Paperwhite 3G, Sony T2, Kobo Aura, Galaxy Note 2 & Note Tablet
Thank you for posting the code. I have been using other code for my covers, but the results are not always great. "Improving cover pages" is on my "learn how to do" list, so will give your method a go
mvo is offline   Reply With Quote
Old 05-02-2011, 11:28 PM   #7
Padr49904
Junior Member
Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.Padr49904 once ate a cherry pie in a record 7 seconds.
 
Posts: 4
Karma: 1738
Join Date: May 2011
Device: Nook Classic
Please be aware that the coding has only been tested on the Nook Classic I have. If there are any computer programs that can mimic other devices then please let me know so I can tweak the code if it needs to be done.
Padr49904 is offline   Reply With Quote
Old 05-07-2011, 06:59 PM   #8
thrawn_aj
quantum mechanic
thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.thrawn_aj ought to be getting tired of karma fortunes by now.
 
thrawn_aj's Avatar
 
Posts: 705
Karma: 483827
Join Date: Aug 2010
Location: NorCal
Device: Nook1, Samsung Transform, Nook2
Thanks for the code! Just what I needed .
__________________
... because it works.
thrawn_aj is offline   Reply With Quote
Reply

Tags
cover size

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding cover image miwie Library Management 9 03-04-2011 10:39 AM
Cover image size crutledge Sigil 3 08-02-2010 03:31 AM
Cover Image Size gr8npwrfl Calibre 0 12-21-2009 12:49 AM
Cover Image Display JoeD OpenInkpot 9 05-05-2009 12:42 AM
Default cover image rakshi Calibre 1 03-29-2009 10:21 PM


All times are GMT -4. The time now is 07:19 PM.


MobileRead.com is a privately owned, operated and funded community.