Sort Score
Result 10 results
Languages All
Labels All
Results 1,721 - 1,730 of 2,435 for

document editing

(0.03 sec)
  1. Using HTML5 Boilerplate Template in Your Web Pr...

    Introduction A few years ago, HTML 5 still wasn’t very well supported by most popular browsers so web sites were created mostly with XHTML or HTML4. I still have a folder on my machine filled with HTML templates for both XTML and HTML 4. Inside of it there are also templates for newsletters, micro-sites, responsive templates and whatnot. All of them were built by taking code from 2 or 3 different templates and look like Frankenstein’s code monster....The content in the of the document should be pretty self-explanatory... There a few tags for the document’s charset type, viewport and...

    blog.groupdocs.com/total/using-html5-boilerplat...
  2. Convert CAD formats | Documentation

    In this article, you will learn how to convert CAD Documents to other formats or another CAD format with GroupDocs.Conversion for .NET....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...can be used to create, open, edit, and export these .cad files...

    docs.groupdocs.com/conversion/net/convert/cad/
  3. Convert CAD formats | Documentation

    In this article, you will learn how to convert CAD Documents to other formats or another CAD format with GroupDocs.Conversion for Node.js via Java....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...can be used to create, open, edit, and export these .cad files...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  4. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream JavaScript try { const fileStream = fs.createReadStream("input.one") const metadata = new groupdocs.metadata.Metadata(fileStream); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/load-fr...
  5. EditableDocument get html with inline styles - ...

    Hi, I am working with EditableDocument to get the complete html as string, I can see that the style is created on the head tag, Is possible to get the full html content but with inside styles?, example: <td style="widt…...string that contains the entire document, including all resources,...inputFilePath = "path/to/your/document.docx"; Editor editor = new...

    forum.groupdocs.com/t/editabledocument-get-html...
  6. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/clean-m...
  7. 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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-bm...
  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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-b...
  9. 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 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...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-d...
  10. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream in Java...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...Metadata ( "input.pdf" ); // Edit or remove metadata here metadata...

    docs.groupdocs.com/metadata/nodejs-java/save-a-...