Sort Score
Result 10 results
Languages All
Labels All
Results 541 - 550 of 10,041 for

new

(0.14 sec)
  1. OCR Usage Basics | Documentation

    This article explains how to use OCR....Consulting Blog Knowledge Base New Releases Status Websites aspose...class using ( Parser parser = new Parser ( Constants . SampleScan...

    docs.groupdocs.com/parser/net/ocr-usage-basics/
  2. Load password-protected file | Documentation

    Load password-protected file In order to open password-protected documents, you have to pass your password to LoadOptions class constructor or assign it to its Password property of an instance of LoadOptions class: LoadOptions loadOptions = New LoadOptions("mypassword"); final Redactor redactor = New Redactor("protected_sample.docx", loadOptions); try { // Here we can use document instance to perform redactions redactor.apply(New ExactPhraseRedaction("John Doe", New ReplacementOptions("[personal]"))); redactor.save(); } finally { redactor.close(); }...Consulting Blog Knowledge Base New Releases Status Websites aspose...class: LoadOptions loadOptions = new LoadOptions ( "mypassword" );...

    docs.groupdocs.com/redaction/java/load-password...
  3. Load the password-protected documents | Documen...

    The page describes how to load the password protected PDF, Word, Excel, PowerPoint documents using GroupDocs.Annotation for .NET....Consulting Blog Knowledge Base New Releases Status Websites aspose...Annotator annotator = new Annotator ( "input.pdf" , new LoadOptions ()...

    docs.groupdocs.com/annotation/net/load-password...
  4. Render Word documents as HTML, PDF, and image f...

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

    docs.groupdocs.com/viewer/net/render-word-docum...
  5. Load password-protected documents | Documentation

    This article explains how to load password-protected PDF, Word, Excel, PowerPoint documents when using GroupDocs.Comparison for Node.js via Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...documents: const comparer = new groupdocs . comparison . Comparer...

    docs.groupdocs.com/comparison/nodejs-java/load-...
  6. Change page orientation | Documentation

    Following this guide you will learn how to change Word document page orientation to Portrait or Landscape using GroupDocs.Merger for Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...OrientationOptions orientationOptions = new OrientationOptions ( OrientationMode...

    docs.groupdocs.com/merger/java/change-page-orie...
  7. Load document from InputStream | Documentation

    This article explains how to load PDF, Word, Excel, PowerPoint documents from stream when using GroupDocs.Merger for Java....Consulting Blog Knowledge Base New Releases Status Websites aspose... try { InputStream stream = new FileInputStream ( "c:\\sample...

    docs.groupdocs.com/merger/java/load-document-fr...
  8. Subset fonts | Documentation

    This topic describes how to subset fonts in PDF file using the GroupDocs.Viewer Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose...file: Java try ( Viewer viewer = new Viewer ( "sample.docx" )) { PdfViewOptions...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  9. Set image resolution | Documentation

    This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose...file: Java try ( Viewer viewer = new Viewer ( "sample.docx" )) { PdfViewOptions...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  10. Save with default options | Documentation

    The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF file will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor redactor = New Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor....Consulting Blog Knowledge Base New Releases Status Websites aspose...options. final Redactor redactor = new Redactor ( "sample.docx" ); try...

    docs.groupdocs.com/redaction/java/save-with-def...