Sort Score
Result 10 results
Languages All
Labels All
Results 8,131 - 8,140 of 11,075 for

document assembly

(0.08 sec)
  1. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-bm...
  2. GroupDocs.Conversion for .NET 21.3 Release Note...

    Note This page contains release notes for GroupDocs.Conversion for .NET 21.3 Major Features There are 5+ features, improvements and bug-fixes in this release, most notable are: Conversions from/to Tga Specified watermark font style (bold, italic) now respected Fixed issue with custom fonts folders Full List of Issues Covering all Changes in this Release Key Category Summary CONVERSIONNET‑4521 Feature Implement conversion from/to Tga CONVERSIONNET‑1785 Fix Docx to PDF conversion characters issue CONVERSIONNET‑4489 Fix Improper conversion from Mbox CONVERSIONNET‑4493 Fix Options equality comparison not working properly when the class contains arrays CONVERSIONNET‑4519 Fix Exception when trying to convert WordML Document stream to PDF CONVERSIONNET‑4546 Fix Converting using ConverterSettings....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/groupdocs-con...
  3. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-b...
  4. GroupDocs.Conversion for .NET 20.10 Release Not...

    Note This page contains release notes for GroupDocs.Conversion for .NET 20.10 Major Features There are 5+ features, improvements and bug-fixes in this release, most notable are: Conversions from Mhtml Improved page extraction when converting from wordprocessing Documents Improved csv/ods pagination Full List of Issues Covering all Changes in this Release Key Category Summary CONVERSIONNET‑4163 Feature Implement conversion from Mhtml CONVERSIONNET‑4205 Improvement Improved page extraction when converting from word Documents CONVERSIONNET‑4208 Improvement Csv/ods pagination CONVERSIONNET‑4157 Fix Not supported file type exception CONVERSIONNET‑4180 Fix DOCX->PDF conversion: ‘Object reference not set to an instance of an object....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/groupdocs-con...
  5. GroupDocs.Comparison for Java 18.6.2 Release No...

    Note This page contains release notes for GroupDocs.Comparsion for Java 18.6.2 Major Features Below the list of fixed bugs in this release of GroupDocs.Comparsion for Java. The most notable are: Key Summary Issue Type COMPARISONJAVA-252 Compare presentations from stream to file is not working properly Bug COMPARISONJAVA-430 Only first two pages compared in result Document Bug COMPARISONJAVA-431 Incorrect result when comparing two PDF files Bug Public API and Backward Incompatible Changes Note This section lists public API changes that were introduced in GroupDocs....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/java/groupdocs-co...
  6. GroupDocs.Annotation for .NET 22.3 Release Note...

    Note This page contains release notes for GroupDocs.Annotation for .NET 22.3 Major Features Below is the list of most notable changes in release of GroupDocs.Annotation for .NET 22.3: Fixed Replacement annotation is added as a Strikeout annotation in PDF. Added ability to change font size for Replacement annotation. Full List of Issues Covering all Changes in this Release Key Summary Issue Type ANNOTATIONNET-1961 Fixed adding replacement annotation as Strikeout to PDF Document Bug ANNOTATIONNET-1982 Implement the ability to add font size for Replacement annotation Feature Public API and Backward Incompatible Changes Added ability to change font size for Replacement annotation, you could find full example here using (Annotator annotator = new Annotator("input....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Annotation Product...

    docs.groupdocs.com/annotation/net/groupdocs-ann...
  7. 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 the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  8. Use redaction callback | Documentation

    In order to reject specific changes during redaction process or to keep a full log of changes in the Document, you need to set Redactor.RedactionCallback property, to a class implementing IRedactionCallback interface. The interface contains only one method, AcceptRedaction, which receives detailed information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumping changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-redaction...
  9. Search for embedded object with custom encrypti...

    This article explains how to search for embedded electronic signatures with custom encryption in Document metadata. This topic contains example of custom encryption, class definition and search for encrypted objects in the Document metadata with GroupDocs.Signature....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/net/search-for-emb...
  10. GroupDocs.Parser for .NET 20.1 Release Notes | ...

    Note This page contains release notes for GroupDocs.Parser for .NET 20.1 Warning In this version legacy API was removed (all types from GroupDocs.Parser.Legacy namespace were removed). Major Features There are the following features in this release: Legacy API was removed (GroupDocs.Parser.Legacy namespace) Implement the ability to extract a text by table of contents item Implement the ability to extract table of contents from PDF and Word Processing Documents Full List of Issues Covering all Changes in this Release Key Summary Issue Type PARSERNET-1099 Remove obsolete members (Legacy namespace) Improvement PARSERNET-1363 Implement the ability to extract a text by TOC item New feature PARSERNET-1361 Implement the ability to extract TOC from Word Processing Documents New feature PARSERNET-1362 Implement the ability to extract TOC from PDF Documents New feature Public API and Backward Incompatible Changes Note This section lists public API changes that were introduced in GroupDocs....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/groupdocs-parser-...