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

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 07-04-2017, 10:14 AM   #16
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by jhowell View Post
I do not use EPUB readers, I use Kindles. As an experiment I converted your revised book using kindlegen and loaded it on an e-ink Kindle running the latest firmware version, 5.8.9.2. The SVG images displayed, but the text was a bit small for my eyes. Kindles have the ability to magnify images, but when I tried that with the SVG images they did not display correctly.
Thanks. I'm certainly curious how Kindles handle SVG images, but I guess it would be best to test with known good input. Since the epub now passes epubcheck, maybe this one is.
j.p.s is offline   Reply With Quote
Old 07-04-2017, 08:37 PM   #17
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,835
Karma: 128597114
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by j.p.s View Post
The source is at: https://github.com/progit/progit

It looks to me like a single file html file is generated and calibre is used to make epub and mobi. pdf is generated separately.
Is the code good to go once it's generated? If so, it would be best to use Sigil or the Calibre editor to split the HTML instead of converting if the code is good to go otherwise.
JSWolf is offline   Reply With Quote
Advert
Old 07-05-2017, 12:49 AM   #18
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by JSWolf View Post
Is the code good to go once it's generated? If so, it would be best to use Sigil or the Calibre editor to split the HTML instead of converting if the code is good to go otherwise.
I don't know. I have no connection with the project, don't know the details of how the HTML gets generated, and never expected to end up this deep down the rabbit hole. It beats me why the HTML was not generated as one file per chapter.

I had expected to just need to substitute the SVG images for the PNG images and change the references from image/png to image/svg. It's obviously more complicated than that, but I'm also begining to suspect buggy epub reader software, but that this book is enough off that it is not good for proof of that.
j.p.s is offline   Reply With Quote
Old 07-06-2017, 12:50 AM   #19
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by j.p.s View Post
I couldn't find a dia exporter with an option to select an SVG ouput version, and the w3c SVG validator didn't like the DTD in the SVG 1.0 files either. I edited the SVG version to 1.1 and changed the DTD to match the w3c SVG 1.1 DTG and every browser I tried rendered the figures at least as well as when they were labeled SVD 1.0, so I made a tip-toe of faith and checked a dozen or so against the w3c validator. All of them passed.
You could open up those 1.0 SVGs in Inkscape and save them as "Plain SVG". It should convert everything to 1.1 for you.

I tested "progit-svg11-xml-img-auto.epub" on my Nook. Displays ok.

But like jhowell mentioned, probably best to change the SVGs to be more EPUB-standards-compliant.

Quote:
Originally Posted by j.p.s View Post
Thanks. I'm also curious whether the figures display on your Kobo aura or any of your Sony e-ink devices. If not, is there some change to any part of the epub that will cause any e-ink device to display at least one of the SVG figures?
The only thing you want to do is go into your code:

Quote:
<p class="calibre3"><img width="100%" src="../Images/18333fig0101-tn.svg" alt="Figure 1-1. Local version control diagram." title="Figure 1-1. Local version control diagram." class="calibre6"/></p>
and remove the "calibre6" class:

Code:
.calibre6 {
    height: auto;
    width: auto
    }
that code is interfering with the SVG stretching to the full width of the screen on some viewers.

Ultimately, what I would recommend doing is changing it to this:

Spoiler:
Quote:
<div class="svgimages"><img src="../Images/18333fig0101-tn.svg" alt="Figure 1-1. Local version control diagram." title="Figure 1-1. Local version control diagram." class="svgimage"/></div>


with this CSS:

Spoiler:
Code:
div.svgimages {
	margin-left: 0;
	margin-right: 0;
	text-align: center;
}

img.svgimage {
	width: 100%;
}


this allows you to easily control all the SVGs in a single location.

Quote:
Originally Posted by j.p.s View Post
Again, while I want the image to display optimally, I mainly want the SVG to display at all, which for most epub readers that I have tried it does not.
Which readers specifically did you try? Most of the Android readers do not follow the EPUB standards... and/or do complete CSS overrides.

Quote:
Originally Posted by jhowell View Post
I do not use EPUB readers, I use Kindles. As an experiment I converted your revised book using kindlegen and loaded it on an e-ink Kindle running the latest firmware version, 5.8.9.2. The SVG images displayed, but the text was a bit small for my eyes. Kindles have the ability to magnify images, but when I tried that with the SVG images they did not display correctly.
If this is for personal usage (and you only use Kindles that support KF8), then sure you could keep the SVG images in the book.

But if it's for actual sale, you have to take into account older Kindles (MOBI). You would then need JPG/PNG fallbacks (this is explained in section 17.3.2.2 of the "Amazon Kindle Publishing Guidelines").

If you needed to generate PNGs, I would recommend taking those SVGs and generating higher quality PNGs from them, sort of like how I explained in my "Tutorial: Formulas to PNG" topic:

Manually using Inkscape: Post #2
Automatically using Imagemagick: Post #19

All you have to do is just tweak that .bat file in Post #19 slightly by changing "*.pdf" into "*.svg":

Spoiler:
Code:
FOR /F %%k IN ('dir /b .\*.svg') DO (
convert -density 350 %%k ^
    -background white -flatten -trim ^
	-depth 8 -colors 17 ^
    %%k.png
)


that'll generate all the SVGs in a given folder into high quality PNGs (350 DPI).

Side Note: You have to be careful with some characters that are included in these SVG files though. For example, in 18333fig0104-tn.svg, the author is using a 𝚫 (U+1D6AB : MATHEMATICAL BOLD CAPITAL DELTA) which probably doesn't exist on many fonts. You'll probably want to substitute in a normal Δ (Greek Capital Delta).

Quote:
Originally Posted by jhowell View Post
The SVG images displayed, but the text was a bit small for my eyes. Kindles have the ability to magnify images, but when I tried that with the SVG images they did not display correctly.
... yeah... this is one of the downfalls of SVG on the current devices. They just don't support it as well as bitmap images. Not being able to Zoom is one of the disadvantages. And there are still a lot of buggy cases such as changing fonts/backgrounds/colors/Night Mode:

https://www.mobileread.com/forums/sh...44#post2852244

or not scaling properly in some readers:

https://www.mobileread.com/forums/sh...40#post3515940

Not too sure how well Text-to-Speech is handled within SVG images either (haven't tested this thoroughly yet).

Theoretically I am all for vector images over their bitmap counterparts... but practically, the damn readers have a while to go. Good to plan for the future though and store your vector sources, so you could always generate higher quality images at a later date (part of the reason I wrote that tutorial. Some sort of middleground while waiting for higher DPI devices + MathML support to get better).

Last edited by Tex2002ans; 07-06-2017 at 01:16 AM.
Tex2002ans is offline   Reply With Quote
Old 07-07-2017, 05:44 AM   #20
willus
Fuzzball, the purple cat
willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.willus ought to be getting tired of karma fortunes by now.
 
willus's Avatar
 
Posts: 1,272
Karma: 11087488
Join Date: Jun 2011
Location: California
Device: iPad
Just a data point: all of the posted epubs display fine in iBooks on a vintage (2010) iPad running iOS 5.x.
willus is offline   Reply With Quote
Advert
Old 07-09-2017, 04:34 PM   #21
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by willus View Post
Just a data point: all of the posted epubs display fine in iBooks on a vintage (2010) iPad running iOS 5.x.
Thanks, that is interesting.

I was about to write that I would think the PDF version would be best for tablets, but I've just noticed that the PDF version uses raster images for the diagrammatic figures.
j.p.s is offline   Reply With Quote
Old 07-09-2017, 04:44 PM   #22
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by Tex2002ans View Post
(Lot's of really good information...)
... that is going to take me a very long time to digest.
j.p.s is offline   Reply With Quote
Old 07-29-2017, 07:00 PM   #23
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
My takeaway is that many epub readers on e-ink devices do not have good support for SVG images, but that my various attempts to substitute SVG images for PNG images in the Pro Git book are not good tests of SVG support in epub readers.

I tried an epub version of "SVG 1.1 2nd Edition Test Suite" a few years ago, but that was not helpful. By the way, I can't find this book now, only W3 web pages with individual tests.

I may eventually put together an epub written specifically to try all the suggestions here plus everything else I can think of.

I must say that I am very disappointed that HTML with simple references to PNG and JPEG image files works just fine in epub readers, but not for SVG in most epub readers on e-ink devices, including FBreader. Especially since they work fine in desktop FBreader and ipad and even somewhat in epub converted to azw3.
j.p.s is offline   Reply With Quote
Old 07-29-2017, 07:34 PM   #24
salamanderjuice
Guru
salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.
 
Posts: 727
Karma: 10215666
Join Date: Jul 2017
Device: Boox Nova 2
Quote:
Originally Posted by j.p.s View Post
My takeaway is that many epub readers on e-ink devices do not have good support for SVG images, but that my various attempts to substitute SVG images for PNG images in the Pro Git book are not good tests of SVG support in epub readers.

I tried an epub version of "SVG 1.1 2nd Edition Test Suite" a few years ago, but that was not helpful. By the way, I can't find this book now, only W3 web pages with individual tests.

I may eventually put together an epub written specifically to try all the suggestions here plus everything else I can think of.

I must say that I am very disappointed that HTML with simple references to PNG and JPEG image files works just fine in epub readers, but not for SVG in most epub readers on e-ink devices, including FBreader. Especially since they work fine in desktop FBreader and ipad and even somewhat in epub converted to azw3.
I just tried the file you attached loaded on my Kobo Aura One via. Calibre and the KoboTouchExtended plugin(so as a kepub) on the latest firmware. It seems to load the diagrams fine. Although they are pretty small on the screen.

It looks like this.
salamanderjuice is offline   Reply With Quote
Old 07-29-2017, 08:01 PM   #25
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by salamanderjuice View Post
I just tried the file you attached loaded on my Kobo Aura One via. Calibre and the KoboTouchExtended plugin(so as a kepub) on the latest firmware. It seems to load the diagrams fine. Although they are pretty small on the screen.

It looks like this.
Thanks!

It is good the hear that the images get rendered. But unless I can get them larger than the PNG images are shown, it doesn't actually help with the original problem. (Well, the file size is smaller, but I think that is secondary when the displayed images are still to small.)
j.p.s is offline   Reply With Quote
Old 07-30-2017, 04:15 AM   #26
fbrzvnrnd
Fanatic
fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.fbrzvnrnd ought to be getting tired of karma fortunes by now.
 
Posts: 554
Karma: 400004
Join Date: Feb 2009
Device: ONYX M96
Quote:
Originally Posted by j.p.s View Post
Thanks!

It is good the hear that the images get rendered. But unless I can get them larger than the PNG images are shown, it doesn't actually help with the original problem. (Well, the file size is smaller, but I think that is secondary when the displayed images are still to small.)


About the size problem, you have to follow the Tex2002ans suggestions. The calibre css are not right.
fbrzvnrnd is offline   Reply With Quote
Old 07-31-2017, 03:53 AM   #27
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by fbrzvnrnd View Post
About the size problem, you have to follow the Tex2002ans suggestions. The calibre css are not right.
I attached the EPUB with the minor CSS tweaks I mentioned in my post.

Seems like someone's eyes glazed over before implementing the solution.

Quote:
Originally Posted by j.p.s View Post
I must say that I am very disappointed that HTML [...] but not for SVG in most epub readers on e-ink devices, including FBreader. Especially since they work fine in desktop FBreader and ipad and even somewhat in epub converted to azw3.
Works fine in ADE/RMSDK + Readium (which would cover the vast majority of spec-compliant readers). Should work fine on Kobos as well (salamanderjuice or someone else could test the tweaked one).

I wouldn't rely on FBReader for anything. It is a reader that throws the EPUB-standards out. Similarly with Moon+ Reader or many of the billions of other Android readers out there.

They can "read EPUB" (aka, rip the HTML out, overwrite the CSS, and try to treat it like a "normal web page" or document). That might fly if you mostly read fiction or text-based non-fiction... but once you get into the more complicated layouts and functionality, they can't be relied upon. (Complex tables, poetry, SVG, various methods of EPUB3 Footnotes, MathML, pagelists, etc. etc.).

If you are reading on Android, some of the spec-compliant readers are Bluefire, Bookari, Gitden Reader.

Side Note: I don't have any first-hand experience with iBooks (I wouldn't touch an Apple product with a ten-foot pole). If anyone has iBooks on their devices, if they could test this EPUB and report back how the SVGs scale/look, that would be great.
Attached Files
File Type: epub progit-svg11-xml-img-auto[TexCSS].epub (1.87 MB, 174 views)

Last edited by Tex2002ans; 07-31-2017 at 04:05 AM.
Tex2002ans is offline   Reply With Quote
Old 07-31-2017, 06:58 AM   #28
salamanderjuice
Guru
salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.salamanderjuice ought to be getting tired of karma fortunes by now.
 
Posts: 727
Karma: 10215666
Join Date: Jul 2017
Device: Boox Nova 2
Quote:
Originally Posted by Tex2002ans View Post
I attached the EPUB with the minor CSS tweaks I mentioned in my post.

Seems like someone's eyes glazed over before implementing the solution.



Works fine in ADE/RMSDK + Readium (which would cover the vast majority of spec-compliant readers). Should work fine on Kobos as well (salamanderjuice or someone else could test the tweaked one).

I wouldn't rely on FBReader for anything. It is a reader that throws the EPUB-standards out. Similarly with Moon+ Reader or many of the billions of other Android readers out there.

They can "read EPUB" (aka, rip the HTML out, overwrite the CSS, and try to treat it like a "normal web page" or document). That might fly if you mostly read fiction or text-based non-fiction... but once you get into the more complicated layouts and functionality, they can't be relied upon. (Complex tables, poetry, SVG, various methods of EPUB3 Footnotes, MathML, pagelists, etc. etc.).

If you are reading on Android, some of the spec-compliant readers are Bluefire, Bookari, Gitden Reader.

Side Note: I don't have any first-hand experience with iBooks (I wouldn't touch an Apple product with a ten-foot pole). If anyone has iBooks on their devices, if they could test this EPUB and report back how the SVGs scale/look, that would be great.
Yep, works fine on my Kobo Aura One. Images are scaled to fit the width of the margins now right?
salamanderjuice is offline   Reply With Quote
Old 07-31-2017, 07:21 AM   #29
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,835
Karma: 128597114
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by salamanderjuice View Post
Yep, works fine on my Kobo Aura One. Images are scaled to fit the width of the margins now right?
Looks like it when I adjust the ADE window width.
JSWolf is offline   Reply With Quote
Old 08-01-2017, 08:41 AM   #30
asleyam
Enthusiast
asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.asleyam is less competitive than you.
 
Posts: 35
Karma: 14720
Join Date: Mar 2016
Device: kindle voyage, Kobo Forma, Kobo Aura One
Quote:
Originally Posted by Tex2002ans View Post

Side Note: I don't have any first-hand experience with iBooks (I wouldn't touch an Apple product with a ten-foot pole). If anyone has iBooks on their devices, if they could test this EPUB and report back how the SVGs scale/look, that would be great.
Here is how they look in iBooks in the 10.5" ipad. Portrait and landscape modes.

https://imgur.com/a/BMp8p
asleyam is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple JPG images in SVG on single epub page dbb1480 Sigil 7 05-20-2016 09:57 AM
Convert SVG to PNG/JPEG in ePUB files bunglegrind Conversion 2 04-24-2016 05:01 PM
convert ODT with multiples svg to epub double the images reup Conversion 8 01-27-2016 03:39 AM
Conversion from xhtml to epub loose svg images pwessel Conversion 3 05-24-2015 11:29 PM
PNG Images in ePUB Files not rendered on Kobo DragonflyKing ePub 12 10-12-2013 08:28 PM


All times are GMT -4. The time now is 12:08 AM.


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