Aspose.Pdf for .NET provides a stable and a reliable version which provides the capabilities to convert PDF documents to various output formats with great fidelity. PDF to other formats conversion has always been challenging but Aspose team has always made it possible by challenging themselves, by producing better API’s as we believe well done is better than well said. We believe in delivering reliable API’s rather than just making announcements. Aspose is one of the market leading File format conversion API provider and we are in this business for more than a decade. So who knows file formats better than us !

Each single release of API’s created by our team of experts is competitive and steadfast enough to compete in market and it helps our customers to fulfill their requirements in a more professional and proficient manner. In short, our goal is to “make IT better”. The new release of Aspose.Pdf for Java is published and the main focus in this release has been towards PDF file to other file formats conversion which includes HTML, DOCX, TIFF, PNG, PDF/A and Excel are some to be named. The complex CSS objects like underline text can easily be recognized during PDF to HTML conversion and similar formatting information can be stored in CSS file. To accomplish this requirement, please try using following code snippet.

Document doc = new Document(myDir+"Lorem+Ipsum.pdf");
HtmlSaveOptions options = new HtmlSaveOptions();
options.TrySaveTextUnderliningAndStrikeoutingInCss = true;
doc.save(myDir+"outline.html", options);