Hello guys,
At the moment i'm writing an EpubConverter that converts PDF files to EPUB files.
But i've got a problem: If i want to display an image, it gets displayed twice!
The first time on the position where it is used to be, the second time on the
last displayed page-part on my ebookreader (Kobo Aura) behind the text.
Here is the xhtml page:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" ><html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Page 1</title>
<link rel="stylesheet" href="../Styles/page0001.css" type="text/css" />
</head>
<body>
<p>
<span class="style0" >TEXT1234i<br /></span>
<span class="style1" >TEXT1234<br /></span>
<span class="style2" >TEXT1234<br /><img alt="" src="../Images/img0.PNG" /><br />TEXT1234<br />TEXT1234<br />TEXT1234<br />Email: TEXT1234<br /></span>
<span class="style3" >TEXT1234<br /></span>
</p>
</body>
</html>
Does one of you know this issue?