Quantcast
Channel: Aspose.Pdf Product Family
Viewing all articles
Browse latest Browse all 3131

Output differ from device to device

$
0
0
Hello,
I am using aspose.pdf to convert pdf file to Epub with the following statements in my Java file, and even attaching input and output files, while my problem is that output is not working on a mobile device with the same Epub reader.

packageconvetorEpub;
public class ConvertToEpub {
public static void main(String[] args) {
com.aspose.pdf.Document pdfDocument = new com.aspose.pdf.Document("/home/jimit/Desktop/input.pdf");
com.aspose.pdf.EpubSaveOptions options = new com.aspose.pdf.EpubSaveOptions();
options.ContentRecognitionMode = com.aspose.pdf.EpubSaveOptions.RecognitionMode.Fixed;
pdfDocument.save("/home/jimit/Desktop/output.epub", options);
}
}

Viewing all articles
Browse latest Browse all 3131

Trending Articles