Sort Score
Result 10 results
Languages All
Labels All
Results 2,451 - 2,460 of 31,515 for

groupdocs.search

(0.21 sec)
  1. Convert PDF to PCL using C#

    Let's learn how to convert PDF to PCL using C# without installing extra software. The conversion library used to export PDF to PCL using C# is platform-independent....Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/conversion/net/convert-pdf-to-...
  2. Convert JPG to XPS using C#

    This tutorial will show you how to convert JPG to XPS using C#. Also, code example will be provided to export JPG to XPS using C# without installing extra software....Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/conversion/net/convert-jpg-to-...
  3. Merge TXT files using C#

    Explore the method of how to merge TXT files using C#. Improve document management efficiency by acquiring the knowledge of how to combine TXT files in C# programming....Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/merger/net/merge-txt-files-usi...
  4. Render XLSX as JPG using Python

    In this topic, we will learn how to render XLSX as JPG using Python. This tutorial explains how to convert XLSX to JPG in Python for static image generation....Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/viewer/python/render-xlsx-as-j...
  5. How to Add Button Component to PDF using C#

    We are going to show you how to add button component to PDF using C# along with complete instructions and code example to insert button in PDF using C#....Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/annotation/net/how-to-add-butt...
  6. Optimize output for printing | GroupDocs

    This article explains how to optimize output HTML for printing....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/viewer/net/how-to-optimize-o...
  7. Load password-protected documents | GroupDocs

    This article explains how to load password-protected PDF, Word, Excel, PowerPoint documents when using GroupDocs.Comparison for Python via .NET....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/comparison/python-net/load-p...
  8. Classify document by path | GroupDocs

    Classify document by path with IAB-2 taxonomy and return 2 best results Classifying of the document could be performed with the next steps Call Classify method for “document.pdf” file in the current (".") directory with IAB-2 taxonomy and return 2 best results. Handle possible ApiException try { var response = classifier.Classify("document.pdf", ".", 3, Taxonomy.Iab2); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); } Precisely classify document by path with Documents taxonomy and return 4 best results Call Classify method for “document....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  9. Advanced search for Form Field signatures | Gro...

     This article explains how to provide advanced search for Form Field electronic signatures with GroupDocs.Signature API....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/signature/java/advanced-sear...
  10. Extracting common image information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/extracting-com...