This article explains how to detect the document file type and calculate the number of pages when converting a file with GroupDocs.Conversion for Java.... CAD Drawings (DWG, DXF, etc.) For CAD drawings...Converter ( "blocks-and-tables.dwg" )) { CadDocumentInfo doc_info...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
Dwg DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property.
The following code snippet reads metadata associated with a CAD file.
AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....The supported CAD formats are: DWG DXF Reading CAD metadata To access...
GroupDocs.Viewer for .NET allows you to render documents in various formats as HTML, PDF, JPEG, and PNG files. You do not need to use third-party software to view files within your .NET application....the (DOCX, XLSX, PPTX, PDF, DWG, PSD, HTML, ZIP, and more) by...
This topic describes how to use the GroupDocs.Viewer Node.js API to convert CAD files (Dwg, DGN, DXF) to HTML, PDF, PNG, and JPEG formats....DWG) (.DWT) (.DWF) (.DXF) (.PLT)...viewer . Viewer ( "HousePlan.dwg" ) // Create an HTML file for...
Share this issue:
Monthly NewsletterJanuary 2018 Hurry! Offer ends January 31st
Get 25% off GroupDocs.Total for .NET and Java. Quote HOL2017WBS when placing your order.
This offer is only available on new GroupDocs.Total purchases and cannot be used in conjunction with other offers, renewals or upgrades. Only available directly from GroupDocs.com, not through third parties or resellers.
Product News
New Product Launched: GroupDocs.Metadata for Java GroupDocs.Metadata is a Java metadata management API that empowers Java developers to perform all useful metadata operations (view, add, modify, remove, compare, search and remove) of popular file formats....documents rendering and support of DWG + DFX (2007,2010). GroupDocs...
Learn how to convert PDF, Word, Excel, and PowerPoint documents with GroupDocs.Conversion for Python via .NET API...., DWG). ThreeDConvertOptions – Options...
This article demonstrates how to load and convert PDF. Word, Excel, PowerPoint documents and Images using GroupDocs.Conversion for Java API...., DWG, DXF) Email Messages (e.g., MSG...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
Dwg DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method.
The following code snippet reads metadata associated with a CAD file.
advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties
try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....The supported CAD formats are: DWG DXF Reading CAD metadata To access...