Quote:
Originally Posted by Jellby
It was just to check that/if the resizing is the culprit.
|
Well, I'll be damned -- that does seem to have fixed the problem. The attached screenshot is from my book, with two versions of the same image side-by-side (in a two-page spread). The one on the left is 900x600, while the one on the right is the first version that was problematic (1800x1200).
So that fixes it -- but I'm still hesitant to do my images at half the size (and, in effect, resolution), though.
Any genius fixes, perchance? I don't know if it makes any difference, but here's the code I used for those two pages (within one file)...
Code:
<div class="svg_outer">
<div class="svg_inner">
<svg xmlns="http://www.w3.org/2000/svg" height="94%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 600 900" width="94%" xmlns:xlink="http://www.w3.org/1999/xlink"><image height="900" width="600" xlink:href="../Images/macbeth1-600x900.jpg"></image></svg>
</div>
</div>
<div class="pagebreak">
<div style="display:none">
</div>
</div>
<div class="svg_outer">
<div class="svg_inner">
<svg xmlns="http://www.w3.org/2000/svg" height="94%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 1200 1800" width="94%" xmlns:xlink="http://www.w3.org/1999/xlink"><image height="1800" width="1200" xlink:href="../Images/macbeth1.jpg"></image></svg>
</div>
</div>