Sort Score
Result 10 results
Languages All
Labels All
Results 3,361 - 3,370 of 8,183 for

file merger

(0.06 sec)
  1. Export Data | Documentation

    How to export data to JSON or XML Files....Merger Product Solution GroupDocs...export data to JSON or XML files. or classes are used for this...

    docs.groupdocs.com/parser/net/export-data/
  2. FileTypeNotSupportedException - GroupDocs.Merge...

    All Classes Packages com.groupdocs.Merger com.groupdocs.Merger.domain com.groupdocs.Merger.domain.common com.groupdoc......merger com.groupdocs.merger.domain com.groupdocs...groupdocs.merger.domain.common com.groupdocs.merger.domain.options...

    apireference.groupdocs.com/merger/java/com.grou...
  3. Save in rasterized PDF | Documentation

    The following example demonstrates how to save the document as a rasterized PDF File: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in File name redactor.save(tmp0); } finally { redactor.close(); }...Merger Product Solution GroupDocs...document as a rasterized PDF file: final Redactor redactor = new...

    docs.groupdocs.com/redaction/java/save-in-raste...
  4. GroupDocs.Viewer for .NET 17.8.0 Release Notes ...

    Note This page contains release notes for GroupDocs.Viewer for .NET 17.8.0 Major Features There are 9 new features and 11 improvements and fixes in this regular monthly release. The most notable are: Responsive output for rendering into HTML Setting to ignore HTML Resource Prefix in resources Implemented feature to show comments when rendering Spreadsheet documents as HTML Implemented feature to show comments when rendering Presentation documents Implemented feature to ignore empty rows when rendering Spreadsheet documents Added DNG image File format support Added Microsoft Visio VSTM, VSSM and VSDM File formats support Full List of Issues Covering all Changes in this Release Key Summary Category VIEWERNET-1322 Export styles that make page responsive when resources are not embedded New Feature VIEWERNET-1315 Implement a setting for ignoring HTML Resource Prefix in resources New Feature VIEWERNET-1307 Show comments when rendering Spreadsheet documents as HTML New Feature VIEWERNET-1305 Ignore empty rows when rendering Spreadsheet documents New Feature VIEWERNET-1292 Add DNG image File format support New Feature VIEWERNET-1260 Add VSTM File format support New Feature VIEWERNET-1259 Add VSSM File format support New Feature VIEWERNET-1258 Add VSDM File format support New Feature VIEWERNET-1191 Show comments when rendering Presentation documents New Feature VIEWERNET-1321 Improve setting prefix for fonts when rendering Text document as HTML Improvement VIEWERNET-1314 Use single naming convention for HTML resources Improvement VIEWERNET-1306 Use ICacheDataHandler instead of IFileDataStore Improvement VIEWERNET-1296 Implement responsive output for rendering into HTML Improvement VIEWERNET-1303 Exception when rendering Excel document into HTML and image Bug VIEWERNET-1297 Exception when rendering email message containing ....Merger Product Solution GroupDocs...Spreadsheet documents Added DNG image file format support Added Microsoft...

    docs.groupdocs.com/viewer/net/groupdocs-viewer-...
  5. GroupDocs.Assembly for .NET 18.1 Release Notes ...

    This page contains release notes for GroupDocs.Assembly for .NET 18.1. Major Features Extended support of dynamic chart axis title setting for more File formats. Full List of Features Covering all Changes in this Release Key Summary Category ASSEMBLYNET-58  Support dynamic chart axis title setting for Spreadsheet documents  Feature ASSEMBLYNET-59 Support dynamic chart axis title setting for Presentation documents  Feature ASSEMBLYNET-60 Support dynamic chart axis title setting for emails with HTML and RTF bodies Feature Public API and Backward Incompatible Changes This section lists public API changes that were introduced in GroupDocs....Merger Product Solution GroupDocs...axis title setting for more file formats. Full List of Features...

    docs.groupdocs.com/assembly/net/groupdocs-assem...
  6. 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:...Merger Product Solution GroupDocs...format-specific information from BMP file headers. The following are the...

    docs.groupdocs.com/metadata/net/working-with-bm...
  7. GroupDocs.Parser for .NET 20.8 Release Notes | ...

    Note This page contains release notes for GroupDocs.Parser for .NET 20.8 Full List of Issues Covering all Changes in this Release Key Summary Category PARSERNET-1176 Implement the ability to extract images from .chm Files New feature PARSERNET-1177 Implement the ability to extract images from .epub Files New feature PARSERNET-1178 Implement the ability to extract images from .fb2 Files New feature PARSERNET-1179 Implement the ability to extract images from .html Files New feature PARSERNET-1580 Implement FileType....Merger Product Solution GroupDocs...to extract images from .chm files New feature PARSERNET-1177 Implement...

    docs.groupdocs.com/parser/net/groupdocs-parser-...
  8. 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:...Merger Product Solution GroupDocs...format-specific information from BMP file headers. The following are the...

    docs.groupdocs.com/metadata/java/working-with-b...
  9. FileType.DOCX Field - GroupDocs.Merger for .NET...

    Microsoft Word Open XML Document (.docx) is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, th...Merger for .NET - API Reference GroupDocs.Merger for .NET...GroupDocs.Merger.Domain Namespaces GroupDocs.Merger.Domain FileType...

    apireference.groupdocs.com/merger/net/groupdocs...
  10. SplitOptions Constructor (String, Int32, Int32)...

    Initializes a new instance of the SplitOptions class....Merger for .NET - API Reference GroupDocs.Merger for .NET...GroupDocs.Merger.Domain Namespaces GroupDocs.Merger.Domain.Options...

    apireference.groupdocs.com/merger/net/groupdocs...