Այս հոդվածը ձեզ կտա հրահանգներ, թե ինչպես փոխարկել XLSX-ը DOCX-ի Java-ի միջոցով: Այն նաև պարունակում է կոդի օրինակ՝ բացատրելու, թե ինչպես արտահանել XLSX-ը դեպի DOCX Java-ում:...միջոցով -ում: Updated on 28 May 2023 Հայերեն English Français...
Եկեք ծանոթանանք Excel-ը C#-ի միջոցով HTML-ի փոխարկելու ընթացակարգին: Իմացեք, թե ինչպես օգտագործել հրահանգները՝ գրելու կոդը՝ Excel-ը C#-ով HTML արտահանելու համար:...C#-ով գրառումը: Updated on 28 May 2023 Հայերեն English Ελληνικά...
Այս կարճ ձեռնարկը բացատրում է ձեզ, թե ինչպես փոխարկել HTML-ը Word-ի՝ օգտագործելով C# առանց որևէ երրորդ կողմի գործիքի և ինչպես օգտագործել այս ուղեցույցը՝ HTML-ը Word-ի C#-ով փոխարկելու համար:...օգտագործելով C# : Updated on 28 May 2023 Հայերեն English Ελληνικά...
This article explains how to handle specific exceptions when verifying document electronic signatures with GroupDocs.Signature API....resources GitHub Examples You may easily run the code above and...
This article shows how to obtain the history of document changes with GroupDocs.Signature API....resources GitHub Examples You may easily run the code above and...
This topic explains how to verify digital electronic signatures with GroupDocs.Signature API....resources GitHub Examples You may easily run the code above and...
This article gives the knowledge about numeric range search which allows you to search in documents any integer numbers in the range from 0 to 9223372036854775807 (Int64.MaxValue) using Java search API....resources GitHub examples You may easily run the code from 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 DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....resources GitHub examples You may easily run the code above and...