View Single Post
Old 04-26-2015, 03:34 PM   #12
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,363
Karma: 20212733
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by joseph harris View Post
Thanks for the detail. When readers open the image list, in Sigil or Calibre or where available in readers or apps, I want them to see the images in order. The images are already numbered. They illustrate the story and add to the overall impression.
Quote:
Originally Posted by joseph harris View Post
What I had hoped is that the program would have a straightforward way to order the images. The alternative is to change the order in an html editor; but the risk of error there is higher!
Based on these comments, I'm not sure you understand what is being said here. Or, that there is a fundamental misunderstanding of how images are displayed.

To display images to the reader you need to link those images from within the html page using code like this:

<img alt="" src="../Images/img_01.jpg" />

You need that code for EACH image that you want to show up in the story.

If your images are given a specific name like "firstimageinchapterone.jpg", "secondimageinchaptertwo.jpg", "Oldman.jpg", "49birdsinTahiti.jpg" and you want them to show up in this order:

1. firstimageinchapterone
2. Oldman
3. 49birdsinTahiti
4. secondimageinchaptertwo

Then you must put them into the HTML in that order. As in:

<img alt="" src="../Images/firstimageinchapterone.jpg" />
<img alt="" src="../Images/Oldman.jpg" />
<img alt="" src="../Images/49birdsinTahiti.jpg" />
<img alt="" src="../Images/secondimageinchaptertwo.jpg" />

The Images folder has absolutely nothing to do with what order they are viewed by the reader, they are simply a container to put all your image files in so the device knows where to go look for them.

When you open Calibre or Sigil, the editor program organizes those files in the alphanumeric order mentioned before (0-9A-Za-z) just for your convenience as the creator...not the reader. The files would be listed in the Images folder as:

49birdsinTahiti.jpg
Oldman.jpg
firstimageinchapterone.jpg
secondimageinchaptertwo.jpg

If you are seriously expecting the reader to go over to the images folder and double click on an image as they get to the spot in the book, then you have things a bit backwards.

Cheers,

Last edited by Turtle91; 04-26-2015 at 03:45 PM.
Turtle91 is offline   Reply With Quote