Browse our Products

Aspose.Slides for Java 18.8 Release Notes

KeySummaryCategory
SLIDESJAVA-37312Exception on using FontsInvestigation
SLIDESJAVA-37132Use Aspose.Slides for Net 18.8 featuresFeature
SLIDESNET-40224Add support for Strict Open XML formatFeature
SLIDESNET-34155Add support for Strict Open XML formatFeature
SLIDESNET-40189Rendering of Metafiles ignores fonts loaded with FontsLoaderFeature
SLIDESNET-40304Rendering comments from ODP format that have no authorBug
SLIDESNET-39229Support for “purl.oclc.org” namespace in Type attribute in “.rels” partsBug
SLIDESJAVA-37028PPT to PDF not properly converted Enterprise SupportEnhancement
SLIDESJAVA-37290Icons are missing in exported PDF for RedHat LinuxEnhancement

Public API Changes

getShowCommentsByNoAuthor and setShowCommentsByNoAuthor methods have been added to INotesCommentsLayoutingOptions

getShowCommentsByNoAuthor() and setShowCommentsByNoAuthor(boolean) methods have been added to INotesCommentsLayoutingOptions.

Specifies the visibility of comments that do not have an author.

By default getShowCommentsByNoAuthor() return false, which means that comments without authors are not displayed.

Presentation pres = new Presentation("no-author.odp");
try
{
    PdfOptions options = new PdfOptions();
    options.getNotesCommentsLayouting().setCommentsPosition(CommentsPositions.Right);
    options.getNotesCommentsLayouting().setShowCommentsByNoAuthor(true);
    pres.save("out_pres.pdf", SaveFormat.Pdf, options);
}
finally {
    pres.dispose();
}