Convert DOCX to DOC using Node.js while preserving formatting and structure. This guide explains how to export DOCX to DOC in Node.js with simple steps....js via Java to convert DOCX files into DOC...Node.js application to enable document conversion functionality Create...
We have a docx file in which Arial MT, Times New Roman fonts are used but upon conversion to pdf we see the following issues :
everything is coming in Arial font and not Arial MT
The header has correct font but it has …...Conversion Product Family java kswati2206 June 11, 2025, 7:12am...using Groupdocs.Conversion for java 25.3 version on a linux machine...
Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...
This article explains how to optimize memory utilization when editing large Word Documents using GroupDocs.Editor for Node.js via Java API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Developer Guide / EditDocument / Edit Word Document / Memory Optimization...
This guide demonstrates how to edit PPT, PPTX, PPTM, PPSX, PPSM, POTX, POTM presentations with different settings and many other powerful features of GroupDocs.Editor for Java....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Editor for Java / Developer Guide / Editdocument / Edit PowerPoint...
Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify Documents of almost all the popular file formats....此外,我们还将了解如何使用 C# 和 Java 编程来编辑 Word 文件。...
Note This feature is supported by version 17.11 or greater Note The code uses some of the objects defined in The Business Layer. Column Chart in Microsoft Word Document Creating a Column Chart Practising the following steps, you can insert a Column Chart in MS Word 2013:
Click in the Document where you want to insert the chart, click the “Insert” tab, and then click “Chart” in the illustrations group to open the “Insert Chart” dialog box....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...Family / GroupDocs.Assembly for Java / Developer Guide / Advanced...
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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...
This Documentation section explains features of EditableDocument class when editing Document with GroupDocs.Editor for Java API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Family / GroupDocs.Editor for Java / Developer Guide / EditableDocument...
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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...