Sort Score
Result 10 results
Languages All
Labels All
Results 1,691 - 1,700 of 10,325 for

format

(0.04 sec)
  1. Single Row Image in Text Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a Single Row Image report in Text Document Format. Note The code uses some of the objects defined in The Business Layer. Single Row Image in Text Document Reporting Requirement As a report developer, you are required to represent inFormation of first single manager with the following key requirements: Report must show image of the manager It must show Name and age of manager Report must be generated in the Text Document....Image report in Text Document format. Note The code uses some of...

    docs.groupdocs.com/assembly/java/single-row-ima...
  2. 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...
  3. JpgViewOptions | GroupDocs.Viewer for .NET API ...

    Provides options for rendering documents into JPG Format. For details see this pagehttps//docs.groupdocs.com/viewer/net/renderingtopngorjpeg/ and its children....rendering documents into JPG format. For details, see this page...

    reference.groupdocs.com/viewer/net/groupdocs.vi...
  4. Extract annotations from document | Documentation

    The page describes how to extract annotations from document when collaborate, edit and annotate documents using GroupDocs.Annotation for .NET....and serialize them to the XML format. To do this, follow these steps:...

    docs.groupdocs.com/annotation/net/extract-annot...
  5. 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...
  6. 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...
  7. 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...
  8. Releasing GroupDocs.Text for .NET – A Convenien...

    Team GroupDocs is pleased to release GroupDocs.Text for .NET API which allows users to extract text from files and documents of various Formats. The API facilitates the user with simple syntax, easy to use methods and few lines of code to perform text extraction operations. Why GroupDocs.Text Is Developed? Suppose you are developing a text searching or text analyzing system, wouldn’t it be great if your system can read or analyze a document even if no document reader is installed on your system?...files and documents of various formats. The API facilitates the user...raw or formatted text from different document formats. Besides...

    blog.groupdocs.com/parser/releasing-groupdocs-t...
  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. Extract text from Microsoft Office Excel spread...

    To extract a text from Microsoft Office Excel spreadsheets getText and getText(int) method is used. These methods allow to extract a text from the entire document or a text from the selected page. Here are the steps to extract a text from Microsoft Office Excel spreadsheets: Instantiate Parser object for the initial spreadsheet; Call getText method and obtain TextReader object; Read a text from reader. Warning getText method returns null value if text extraction isn’t supported for the document....Extract data from various formats / Extract data from Microsoft.... out . println ( String . format ( "Sheet %d/%d" , p + 1 , spreadsheetInfo...

    docs.groupdocs.com/parser/java/extract-text-fro...