Sort Score
Result 10 results
Languages All
Labels All
Results 1,651 - 1,660 of 30,351 for

groupdocs.viewer

(0.19 sec)
  1. Supported Document Formats | Documentation

    The following table indicates the file formats that GroupDocs.Classification for .NET can process. Format Description PDF Adobe Portable Document Format (PDF) DOC Microsoft Word 97-2003 Document DOCM Microsoft Word Macro-Enabled Document DOCX Microsoft Word Document DOT Microsoft Word 97-2003 Template DOTM Microsoft Word Macro-Enabled Template DOTX Microsoft Word Template ODT OpenDocument Text OTT Open Document Text Template RTF Rich Text Document TXT Plain Text Document Tip Can’t find your file format?...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/classification/net/supported...
  2. Classify document from stream | Documentation

    Classifying of the document from stream could be performed with the next step Call Classify method for “stream” stream with Documents taxonomy and return 2 best results. Handle possible ApiException // Classify document from stream with Documents taxonomy and return 2 best resultstry { var response = classifier.Classify(stream, 2, Taxonomy.Documents); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); }...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  3. Working with String Template | Documentation

    GroupDocs.Assembly API allows you to use a string as input and output template, instead of document. This feature improves programmability while working with strings instead of documents, the resultant output string can be used as per the application needs. Follow these steps to using a string as input and output template: Initialize DocumentAssembler Define sourceString “«[yourValue]»” Convert sourceString to sourceBytes using ByteArrayInputStream(sourceBytes) Get targetBytes using DocumentAssembler.assembleDocument() Get** targetString **using new String(targetBytes, StandardCharsets....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/assembly/java/working-with-s...
  4. 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....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/save-overwrit...
  5. Installation | Documentation

    GroupDocs hosts all Java APIs on GroupDocs Repository. You use the GroupDocs.Annotation for Java API directly in your Maven projects with simple configurations. Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml as follows: XML GroupDocs Artifact Repository GroupDocs Artifact Repository https://releases.groupdocs.com/java/repo/ Define GroupDocs.Annotation for Java API Dependency Then define GroupDocs.Annotation for Java API dependency in your pom.xml as follows:...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/installation/
  6. Save document to the specified stream | Documen...

    This article explains how to save document to the specified stream while using GroupDocs.Watermarks Java API....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/watermark/java/save-document...
  7. Rotate pages | Documentation

    Following this guide you will learn how to change PDF document page rotation angle using GroupDocs.Merger for Node.js via Java API....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/merger/nodejs-java/rotate-pa...
  8. Load document from URL | Documentation

    This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Merger for Java....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/merger/java/load-document-fr...
  9. Extract an image from an image annotation | Doc...

    The page describes how to extract image from image annotation....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/annotation/net/extracting-im...
  10. Working with Template Syntax Formatting | Docum...

    Note The code uses some of the objects defined in The Business Layer. Template Syntax Formats Specifying String and Numeric Formats Learn more about string and numeric formats here. Template Syntax Manager Contract Price <>
    <<[getName()]:upper>> <<[getContracts().sum(
    c =>
    c.getPrice())]:arabicDash>>
    <
    > Total: <<[getManagers().sum(
    m => m.getContracts().sum(
    c => c.getPrice()))]>> Download Template Get template from here. Numeric upper.docx The Code...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/assembly/java/working-with-t...