Sort Score
Result 10 results
Languages All
Labels All
Results 731 - 740 of 6,660 for

may

(0.07 sec)
  1. How to Convert RTF to SVG using C#

    In this tutorial, you will learn how to convert RTF to SVG using C# by following a step-by-step process. Also, a sample code is included to export RTF to SVG in C#.... Updated on 22 May 2023 English Türkçe 日本語 Français...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  2. How to Convert XLSX to CSV using Java

    The focus of this topic is to guide you on how to convert XLSX to CSV using Java, and help you in developing a Java application to change XLSX to CSV in Java.... However, there may be times when you need to conversion...

    kb.groupdocs.com/conversion/java/how-to-convert...
  3. How to Compare Excel Files using C#

    This quick how-to tutorial provide you the complete guide to compare Excel files using C# and learn the process to programmatically compare two Excel files for differences in C#.... However, you may modify this sample code by repeating...

    kb.groupdocs.com/comparison/net/how-to-compare-...
  4. How to Convert SVG to PNG using C#

    This tutorial will explain the process to convert SVG to PNG using C# and how to implement the C# convert SVG to PNG feature using the steps defined in this post.... Updated on 20 May 2022 English Ελληνικά Türkçe...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. Merge archives | Documentation

    Learn how to merge archive files, combine archive files into one file programmatically in Node.js via Java language using GroupDocs.Merger for Node.js via Java library.... You may specify absolute or relative...

    docs.groupdocs.com/merger/nodejs-java/merge/arc...
  6. Merge EPUB | Documentation

    Learn how to merge EPUB files, combine EPUB files into one file programmatically in Python via .NET language using GroupDocs.Merger for Python via .NET library.... You may specify absolute or relative...

    docs.groupdocs.com/merger/python-net/merge/epub/
  7. Merge archives | Documentation

    Learn how to merge archive files, combine archive files into one file programmatically in Python via .NET language using GroupDocs.Merger for Python via .NET library.... You may specify absolute or relative...

    docs.groupdocs.com/merger/python-net/merge/arch...
  8. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....resources GitHub examples You may easily run the code above and...

    docs.groupdocs.com/metadata/java/getting-known-...
  9. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....resources GitHub examples You may easily run the code above and...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Merge images | Documentation

    Learn how to merge image files, combine image files into one file programmatically in Python via .NET language using GroupDocs.Merger for Python via .NET library.... You may specify absolute or relative...

    docs.groupdocs.com/merger/python-net/merge/images/