Hi,
some days ago I had a problem with images that I converted from epub to mobi.
The problem was the original html code how the image was presented on the page in the epub file.
The original code looked like:
Code:
<svg xmlns="http://www.w3.org/2000/svg" width="100%" version="1.1" preserveAspectRatio="xMidYMin" class="sgc-1" viewBox="0 0 78 46">
<image xmlns:xlink="http://www.w3.org/1999/xlink" width="78" height="46" xlink:href="../Images/1.png"></image>
With Sigil (
https://www.mobileread.com/forums/showthread.php?t=52493) I changed it to:
Code:
<p class="p_P14"> <span class="sgc-1"><img alt="" src="../Images/1.png" /></span></p>
Maybe this helps you.
Bratzzo