Sort Score
Result 10 results
Languages All
Labels All
Results 3,391 - 3,400 of 3,768 for

editing

(0.04 sec)
  1. 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 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); // ....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/net/working-with-di...
  2. GroupDocs.Editor Product Family on GroupDocs Bl...

    GroupDocs.Editor Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Editor Product Family on GroupDocs Blog | Document Automatio......และบันทึกการเปลี่ยนแปลงในรูปแบบต่างๆ โดยใช้ Editing Java API แก้ไขไฟล์ XML โดยใช้...

    blog.groupdocs.com/th/categories/groupdocs.edit...
  3. 编辑 XML 文件 |在线编辑和程序化方法

    探索编辑 XML 文件的有效方法。可以在线编辑 XML 文件,也可以使用 C# 和 Java 以编程方式进行编辑。...Edit(editOptions)) { // 随便编辑 string...EditableDocument beforeEdit = editor.edit(editOptions); // 编辑 XML String...

    blog.groupdocs.com/zh/editor/edit-xml-files/
  4. GroupDocs Blog | Document Automation Solutions ...

    GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers ✍️ Guia Completo para Assinar D...... Edite programaticamente propriedades...visualizar e editar metadados EPUB. Edite metadados EPUB online ou faça...

    blog.groupdocs.com/pt/index.xml
  5. Cómo convertir EPUB a PDF usando C#

    Este breve artículo proporciona un procedimiento paso a paso para convertir EPUB a PDF usando C# y una aplicación de trabajo de muestra para convertir un archivo EPUB a PDF en C#....electrónico a un formato no editable mediante el consumo de uno...

    kb.groupdocs.com/es/conversion/net/how-to-conve...
  6. Convierta PDF a TXT usando Node.js

    Aprendamos a convertir PDF a TXT usando Node.js. Exporte PDF a TXT en Node.js con métodos de análisis personalizados, manejo de flujos y buffers para una extracción de texto precisa....el contenido en un formato editable, puede convertir PDF a TXT...

    kb.groupdocs.com/es/conversion/nodejs/convert-p...
  7. Pie Chart in Email Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a Pie Chart report in Presentation Document format. Note The code uses some of the objects defined in The Business Layer. Note This feature is supported by version 17.8.0 or greater. Pie Chart in Email Document Creating a Pie Chart Please follow below steps to create Pie Chart in MS Outlook 2013: Create a new Email. Click the “Insert” tab, and then click “Chart” in the illustrations group to open the “Insert Chart” dialog box.... Edit the Worksheet with your data...

    docs.groupdocs.com/assembly/net/pie-chart-in-em...
  8. Pie Chart in Presentation Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a Pie Chart report in Presentation Document format. Note The code uses some of the objects defined in The Business Layer. Pie Chart in Microsoft PowerPoint Document Creating a Pie Chart Please follow below steps to create Pie Chart in MS PowerPoint 2013: Add a new presentation slide. Click the “Insert” tab, and then click “Chart” in the illustrations group to open the “Insert Chart” dialog box.... Edit the Worksheet with your data...

    docs.groupdocs.com/assembly/java/pie-chart-in-p...
  9. Removing metadata | Documentation

    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....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/python-net/removing...
  10. Working with metadata in PNG images | Documenta...

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/net/working-with-me...