Sort Score
Result 10 results
Languages All
Labels All
Results 1,751 - 1,760 of 10,539 for

format

(0.04 sec)
  1. Convert to PDF with advanced options | Document...

    Follow this guide and learn how a file convert to pdf with height, width, DPI, margins and other customizations using GroupDocs.Conversion for .NET....versions of PDF format. sets the specific PDF format of the converted...options. See . defines the PDF formatting options. See . The following...

    docs.groupdocs.com/conversion/net/convert-to-pd...
  2. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting Format-specific inFormation from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs....Managing metadata for specific formats / Video / Working with metadata...Metadata API supports extracting format-specific information from the...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Add Watermark to a Batch of Documents and Image...

    Watermarking is a popular technique to indicate that the content or data inside a document is copyrighted. On the other hand, it is also used to place the company’s logo or some kind of label in the documents before they are shared within or outside the company. However, it is quite hard to apply the watermark to a bunch of documents one by one. It becomes harder if you have documents of various Formats such as PDF, DOCX, PPTX, XLSX, EML, JPG, PNG, etc....have documents of various formats such as PDF, DOCX, PPTX, XLSX...the document of a particular format. Before we proceed, let me...

    blog.groupdocs.com/watermark/add-watermark-to-a...
  4. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....redacted document is saved in PDF format result_path = redactor . save...redactions for various document formats like PDF, DOC, DOCX, PPT, PPTX...

    docs.groupdocs.com/redaction/python-net/pre-ras...
  5. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting Format-specific inFormation from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Managing metadata for specific formats / Images / Working with DICOM...Metadata API supports extracting format-specific information from DICOM...

    docs.groupdocs.com/metadata/net/working-with-di...
  6. Extracting Common Image Information | Documenta...

    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 FileType property to obtain file Format inFormation AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); 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); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Managing metadata for specific formats / Images / Extracting Common...feedback For all supported image formats the GroupDocs.Metadata API...

    docs.groupdocs.com/metadata/net/extracting-comm...
  7. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting Format-specific inFormation from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_Formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Managing metadata for specific formats / Video / Working with metadata...Metadata API supports extracting format-specific information from the...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. How to Convert ODT to PPTX using Java

    In this tutorial, we will discover how to convert ODT to PPTX using Java without installing extra software installation along with code to export ODT to PPTX in Java....convert files between different formats is vital. This step-by-step...to convert any ODT to PPTX format using Java. By following this...

    kb.groupdocs.com/conversion/java/how-to-convert...
  9. Formulas, Smart Art and VBA Controls support in...

    We are glad to announce another monthly release of GroupDocs.Comparison for .NET 17.2.0 API with eight new features like support of Imaging DjVu file Format, Formulas, Smart Art and image comparison in spreadsheet document introduced, also providing support for “VBA Controls” in Document Comparison API v17.2.0. This monthly release is adding two improvements like “Improve comparison changes detection for Paragraphs” along with five major fixes. Detailed inFormation is listed below....support of Imaging DjVu file format, Formulas, Smart Art and image...details about supported document formats, please visit Features Overview...

    blog.groupdocs.com/comparison/formulas-smart-ar...
  10. In-Table List in HTML | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a In-TableList report in HTML Document Format. Note The code uses some of the objects defined in The Business Layer. In-Table List in HTML Document Reporting Requirement As a report developer, you are required to represent the inFormation of the managers with the following key requirements: Report must show managers’ name. It must show the sum of contract prices against each manager....In-TableList report in HTML Document format. Note The code uses some of...

    docs.groupdocs.com/assembly/java/in-table-list-...