The page describes how to implement user roles in GroupDocs.Annotation for .NET API....shows how to add a user role: C# using ( Annotator annotator =...
This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#)....image resolution in the file: C# using GroupDocs.Viewer ; using...
The page describes how to load PDF, Word, Excel, PowerPoint documents from Azure Blob storage when using GroupDocs.Annotation for .NET.... C# string blobName = "sample.pdf"...
This article explains how to load PDF, Word(.doc, .docx), Excel(.xls,.xlsx), PowerPoint(.ppt, .pptx) documents from stream when using GroupDocs.Merger for .NET.... OpenRead ( @"c:\sample.docx" )) { using ( Merger...
Սա հիմնական ձեռնարկ է, թե ինչպես փոխարկել Excel-ը PDF-ի Java-ի միջոցով: Փոխակերպեք փաստաթղթերը առանց երրորդ կողմի ծրագրերի օգտագործման և արագ տարածեք դրանք բոլորին:...փնտրում դեպի փոխարկել Excel-ը PDF-ի C#-ով , սա այն վայրն է, որտեղ պետք...
Pass a FileStream or any System.IO.Stream directly to the Comparer constructor and Add() method to compare documents without saving them to disk first in GroupDocs.Comparison for .NET....how to load file from stream: C# using GroupDocs.Comparison ;...
You might need to save a document to any custom file at any location on the local disc or a even a Stream.
The following example demonstrates how to save a document to any location.
final Redactor redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform redactions RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....fileStream = new FileOutputStream ( "C:\\\\Temp\\\\sample_output_file...