Sort Score
Result 10 results
Languages All
Labels All
Results 631 - 640 of 9,971 for

new

(0.03 sec)
  1. Render images as HTML, PDF, PNG, and JPEG files...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert images to HTML, PDF, PNG, and JPEG formats....Consulting Blog Knowledge Base New Releases Status Websites aspose...// ... using ( var viewer = new Viewer ( "vector-image.svg" ))...

    docs.groupdocs.com/viewer/net/render-images/
  2. Working with IPTC IIM metadata | Documentation

    This article explains how to access IPTC metadata in a file of any supported format, GroupDocs.Metadata for Java provides the IIptc.getIptcPackage method....Consulting Blog Knowledge Base New Releases Status Websites aspose...international exchange of news among newspapers and news agencies. But nowadays...

    docs.groupdocs.com/metadata/java/working-with-i...
  3. Generate previews | Documentation

    This article provides learning contents about how to generate page previews of documents in .NET using GroupDocs.Parser for Java API...Consulting Blog Knowledge Base New Releases Status Websites aspose...previews try ( Parser parser = new Parser ( Constants . SamplePdfWithToc...

    docs.groupdocs.com/parser/java/generate-previews/
  4. Use PDF redaction filters | Documentation

    This article explains that how to set page-level scope to PDF redactions....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Redactor redactor = new Redactor ( "Sample.pdf" )) {...

    docs.groupdocs.com/redaction/net/use-pdf-redact...
  5. Sign document with ordering the signatures | Do...

    This article shows how to create electronic signatures with specific ordering on the document page...Consulting Blog Knowledge Base New Releases Status Websites aspose...GroupDocs.Signature: Create a new instance of class and pass the...

    docs.groupdocs.com/signature/net/sign-document-...
  6. Working with spreadsheet document attachments |...

    This article explains how to work with spreadsheet document attachments while using GroupDocs watermarking API...Consulting Blog Knowledge Base New Releases Status Websites aspose...SpreadsheetLoadOptio loadOptions = new SpreadsheetLoadOptio (); // Specify...

    docs.groupdocs.com/watermark/net/working-with-s...
  7. Customize changes styles | Documentation

    Following this guide you will learn how to customize document comparison report and modify the appearance of detected changes when using GroupDocs.Comparison for Node.js via Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...change styles const comparer = new groupdocs . comparison . Comparer...

    docs.groupdocs.com/comparison/nodejs-java/custo...
  8. Shapes in spreadsheet document | Documentation

    The watermarking API enables you extracting information about all shapes in an excel document, Removing a particular shape, Removing shapes with particular text formatting, Replacing text for particular shapes, Replacing shape image and more....Consulting Blog Knowledge Base New Releases Status Websites aspose...SpreadsheetLoadOptio loadOptions = new SpreadsheetLoadOptio (); // Specify...

    docs.groupdocs.com/watermark/net/shapes-in-spre...
  9. Accept or Reject detected changes | Documentation

    Following this guide you will learn how to apply or discard changes detected during document comparison process using GroupDocs.Comparison for Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose.... try ( Comparer comparer = new Comparer ( "source.docx" )) {...

    docs.groupdocs.com/comparison/java/accept-or-re...
  10. Save overwriting original file | Documentation

    The following example demonstrates how to save the redacted document, replacing an original file: // Make a copy of sample file Files.copy(New File("Sample.docx").toPath(), New File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = New Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(New ExactPhraseRedaction("John Doe", New ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = New SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....Consulting Blog Knowledge Base New Releases Status Websites aspose.... copy ( new File ( "Sample.docx" ). toPath (), new File ( "OverwrittenSample...

    docs.groupdocs.com/redaction/java/save-overwrit...