06-02-2014, 07:55 AM | #1 |
Junior Member
Posts: 6
Karma: 10
Join Date: Apr 2014
Device: none
|
picture book
I am in the midst of putting together a picture book in sigil.
I don't have a lot of knowledge about html, etc...don't want a huge expense (like publishing fixed page etc...) but do want the pictures to look rather decent and work readers. When I download others' picture books, their pictures don't seem to work so well. The pics bleed to next pages and then the pages don't really turn. I've found one picture book that seems to work in whatever viewer I've stuck it into. the author created pics: 1,000 x 1100. I've been told to keep pictures to a 4:3 ratio. Other than that I tried to use his html to construct my book (substituting, of course, my pics and information). Didn't work for me. Could someone help me with the proper html? for the actual page and css style sheet? I found information on using svg wrappers (tried it and failed)...and that information was from 2011, so am wondering if that is out of date. any help would be so appreciated! thanks! |
06-02-2014, 11:06 AM | #2 |
Wizard
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
|
You give yourself quite a task there. Picture books are very difficult to make that play nice on various readers... I think, but I am no expert on picture books, that a fixed-layout book would be the best way.
SVG wrappers still work and could be a good idea, if you want the picture to fill complete pages without distortion, regardless of the screen resolution. You will have margins then of course, but at least no distortion. The real issues begin when you also want text under the pictures... |
Advert | |
|
06-02-2014, 11:21 AM | #3 |
Well trained by Cats
Posts: 30,448
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
for SVG, I cheat
(Assumes all images are the same size) Add all the Images using ADD Image Files Add 1 image as the Cover :Tools: add cover: (select image) Then copy the entire contents of the coverand paste THAT into a new file: Edit the IMAGE filename only to the next image Repeat Finally: Add the REAL cover.Xhtml file Add a Header (can be hidden or .0001pt high) if you want Sigil to generate a TOC Alternate: the 'rolling cover add' I do the Placement work sort of backwards Add the LAST image as a cover. Tools:Add cover In the file browser: Rename the file to its real desired name (not cover) Add the Next 'cover'Add Semantics: click Cover to remove the tick Repeat the above until done |
06-02-2014, 01:07 PM | #4 | |
Junior Member
Posts: 6
Karma: 10
Join Date: Apr 2014
Device: none
|
thanks!!!
Quote:
thank you so much for responding!!! |
|
06-02-2014, 01:09 PM | #5 | |
Junior Member
Posts: 6
Karma: 10
Join Date: Apr 2014
Device: none
|
thank you!
Quote:
If I am correct, I'm a little confused by the last part of what you write: I do the Placement work sort of backwards Add the LAST image as a cover. Tools:Add cover In the file browser: Rename the file to its real desired name (not cover) Add Semantics: click Cover to remove the tick Add the Next 'cover' Repeat the above until done Last edited by clatterjill; 06-02-2014 at 01:12 PM. |
|
Advert | |
|
06-02-2014, 01:52 PM | #6 | |
Well trained by Cats
Posts: 30,448
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Quote:
You make the FILE, then cancel the 'Cover' (symatics) part Then you add the next 'Cover' and cancel The Symantics <this is what I meant about repeat Now every file has a separate SVG wrapped image. The order of the files is the bulk of your 'picture book' |
|
06-02-2014, 09:55 PM | #7 | |
Junior Member
Posts: 6
Karma: 10
Join Date: Apr 2014
Device: none
|
thank you!
Quote:
thanks so much! |
|
06-07-2014, 10:12 AM | #8 | |
Zealot
Posts: 115
Karma: 10
Join Date: Jan 2011
Device: none
|
Toxaris says:
Quote:
Code:
<div>
<svg xmlns="http://www.w3.org/2000/svg" height="95%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 600 800" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink">
<image height="800" width="600" xlink:href="../Images/cover.jpg"></image>
</svg>
</div>
If you want to place your text on top, you can play with the viewBox values: Code:
<div> <svg xmlns="http://www.w3.org/2000/svg" height="95%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 -20 600 820" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink"> <image height="800" width="600" xlink:href="../Images/cover.jpg"></image> </svg> </div> Last edited by kamanza; 06-07-2014 at 10:15 AM. |
|
06-09-2014, 10:34 AM | #9 |
Junior Member
Posts: 3
Karma: 10
Join Date: Aug 2012
Device: none
|
Hi! I take it that this would only work for an actual picture book? I'm trying to format a chapter book with 1 or 2 illustrations per chapter... could I use this trick, or would all my illustrations be placed at the front of the book because they're masquerading as covers?
|
06-09-2014, 10:57 AM | #10 | |
Well trained by Cats
Posts: 30,448
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Quote:
Note: if you DON'T remove the setting on the HTML file, Sigil will replace the 'existing' cover with the new one. You can then drag the 'faked' cover to the ultimate location (order). If you want the SVG in the middle: Split at the destination, then drag the faked (canceled) cover in between Upper text Picture Lower text Then simply MERGE the 3 pieces |
|
06-09-2014, 11:06 AM | #11 |
Junior Member
Posts: 3
Karma: 10
Join Date: Aug 2012
Device: none
|
Thank you! I'm very new at this (can you tell?), so hopefully I can muddle through... I thought it would simple to use the "insert file" to add an image, but got scared after reading the posts about how they turn out
|
06-09-2014, 11:31 AM | #12 | |
Well trained by Cats
Posts: 30,448
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Quote:
1)You need to ADD the image to the book (will appear in the Images section of the file list) 2)Use (place), the image on a page (can be many pages. eg. fleuron use) Fightcrew (the check) will advise you (yellow) if you have unused images (not placed). |
|
06-15-2014, 07:26 PM | #13 |
Guru
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
|
Will this book be offered for sale, or is it just for your private use?
If it will be sold, will this be only through outlets that use epub format, or will it be offered on Amazon's Kindle Store as well? |
06-20-2014, 06:47 AM | #14 |
mostly an observer
Posts: 1,515
Karma: 987654
Join Date: Dec 2012
Device: Kindle
|
Oops! I was growing ever more excited about this workaround, but are you now saying it might blow up when run through the KDP conversion?
|
06-20-2014, 06:49 AM | #15 | |
mostly an observer
Posts: 1,515
Karma: 987654
Join Date: Dec 2012
Device: Kindle
|
Quote:
|
|
Tags |
clatterjill, images, picture, sigil |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creator Picture Book - How to upload pictures? | jm24 | Kindle Formats | 10 | 11-17-2012 07:36 PM |
Free Halloween Picture Book | lkstanek | Self-Promotions by Authors and Publishers | 0 | 10-04-2012 09:50 AM |
Picture book woes | mjb11800 | Conversion | 6 | 03-18-2012 10:26 AM |
Picture book for ipad has errors | splinters | ePub | 6 | 06-30-2010 03:53 PM |
Anyone willing to take Picture with my book on the screen ? | alexibm | Sony Reader | 9 | 09-17-2007 05:19 PM |