Sort Score
Result 10 results
Languages All
Labels All
Results 2,371 - 2,380 of 4,056 for

as

(0.04 sec)
  1. System Requirements | Documentation

    On this page you will find system requirements supported platforms, development environments. GroupDocs.Comparison for .NET does not require any external software or third party tool to be installed....On this page you will find system requirements supported platforms, development environments. GroupDocs.Comparison for .NET does not require any external software or third party tool to be installed.

    docs.groupdocs.com/comparison/net/system-requir...
  2. .Net Core version 5.0 support - Free Support Fo...

    Hi with the releAse of dotnet 5, is there any update on this library being available for modern dotnet?...Hi with the release of dotnet 5, is there any update on this library being available for modern dotnet?

    forum.groupdocs.com/t/net-core-version-5-0-supp...
  3. Cross out Text on GroupDocs Blog | Document Aut...

    Cross out Text on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Cross out Text on GroupDocs Blog | Document Automation Solutions for .NET & Java Develo......Cross out Text on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Cross out Text on GroupDocs Blog | Document Automation Solutions for .NET & Java Develo...

    blog.groupdocs.com/pt/tag/cross-out-text/index.xml
  4. watermark excel sheets in csharp on GroupDocs B...

    watermark excel sheets in csharp on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in watermark excel sheets in csharp on GroupDocs Blog | Document Automat......watermark excel sheets in csharp on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in watermark excel sheets in csharp on GroupDocs Blog | Document Automat...

    blog.groupdocs.com/pt/tag/watermark-excel-sheet...
  5. Extract Images from eBooks in CSharp on GroupDo...

    Extract Images from eBooks in CSharp on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Extract Images from eBooks in CSharp on GroupDocs Blog | Document......Extract Images from eBooks in CSharp on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Extract Images from eBooks in CSharp on GroupDocs Blog | Document...

    blog.groupdocs.com/pt/tag/extract-images-from-e...
  6. Feature request: property WasSuccessful/IsEmpty...

    Hello, We are interested in a property that signalizes whether an extraction wAs successful. We are calling this: var extractionOptions = new ExtractionOptions { UseRawTextExtraction = false, }; var extractedData = ex…...Hello, We are interested in a property that signalizes whether an extraction was successful. We are calling this: var extractionOptions = new ExtractionOptions { UseRawTextExtraction = false, }; var extractedData = ex…

    forum.groupdocs.com/t/feature-request-property-...
  7. Cache Page Previews in GroupDocs.Annotation for...

    EnableCaching feature stores image representation of a document in a directory at the local drive. In cAse of repetitive processing/opening of a document, it uses cached data. This thing helps to avoid the processing of the same document again and again. You might be waiting for this feature. The wait is over now. GroupDocs.Annotation for Java 19.5 permits you to enable cache mode and cache page previews. Let’s take a overview of its code....EnableCaching feature stores image representation of a document in a directory at the local drive. In case of repetitive processing/opening of a document, it uses cached data. This thing helps to avoid the processing of the same document again and again. You might be waiting for this feature. The wait is over now. GroupDocs.Annotation for Java 19.5 permits you to enable cache mode and cache page previews. Let’s take a overview of its code.

    blog.groupdocs.com/annotation/cache-page-previe...
  8. How to Compare Files with GroupDocs PHP SDK

    This article explains the bAsics of using PHP SDK clAsses and methods. In this article I’ll use the Comparison API and show how to compare two documents from a GroupDocs account. Find information about other methods in the Swagger explorer. Requirements PHP 5.3 Apache ModRewrite PHP Curl extension PHP Sockets extension (php_sockets.dll) GroupDocs PHP SDK composer.phar (Download from http://getcomposer.org/download/ or use the included version) FatFree framework (https://github.com/bcosca/fatfree) We already know how to install the Fatfree framework and prepare for creating the sample from the previous article....This article explains the basics of using PHP SDK classes and methods. In this article I’ll use the Comparison API and show how to compare two documents from a GroupDocs account. Find information about other methods in the Swagger explorer. Requirements PHP 5.3 Apache ModRewrite PHP Curl extension PHP Sockets extension (php_sockets.dll) GroupDocs PHP SDK composer.phar (Download from http://getcomposer.org/download/ or use the included version) FatFree framework (https://github.com/bcosca/fatfree) We already know how to install the Fatfree framework and prepare for creating the sample from the previous article.

    blog.groupdocs.com/comparison/how-to-compare-fi...
  9. Generating page preview for WordProcessing docu...

    This article describes how to generate a preview for any page for the existing WordProcessing document in SVG format using the GroupDocs.Editor...This article describes how to generate a preview for any page for the existing WordProcessing document in SVG format using the GroupDocs.Editor

    docs.groupdocs.com/editor/java/generating-page-...
  10. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, pleAse use the DocumentProperties property defined in the DocumentRootPackage clAss....Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage<PdfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class.

    docs.groupdocs.com/metadata/net/working-with-me...