Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 268 for

header,

(0.51 sec)
  1. Working with BMP metadata | GroupDocs

    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:...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:

    docs.groupdocs.com/metadata/java/working-with-b...
  2. extract-headers-footers.txt

    Worksheet 0 header/footer slots: 6 type=0 sections=3 with_content=0 type=1 sections=3 with_content=0 type=2 sections=3 with_content=0 type=3 sections=3 with_content=0 type=4 sections=3 with_content......Worksheet 0 header/footer slots: 6 type=0 sections=3 with_content=0 type=1 sections=3 with_content=0 type=2 sections=3 with_content=0 type=3 sections=3 with_content=0 type=4 sections=3 with_content...

    docs.groupdocs.com/watermark/python-net/_output...
  3. Working with worksheet headers and footers | Gr...

    This article explains how to work with worksheet headers and footers while using GroupDocs watermarking API...This article explains how to work with worksheet headers and footers while using GroupDocs watermarking API

    docs.groupdocs.com/watermark/net/working-with-w...
  4. render-numbers-to-html-external-outputs.zip

    render_numbers_to_html_external/pdf_page_1.html ModelID Date Quantity 1,003 2011.06 4,620 1,003 2011.07 4,432 1,003 2011.08 4,521 1,004 2011.06 53 1,004 2011.07 45 1,004 2011.08 59 1,005 2011.06 73......render_numbers_to_html_external/pdf_page_1.html ModelID Date Quantity 1,003 2011.06 4,620 1,003 2011.07 4,432 1,003 2011.08 4,521 1,004 2011.06 53 1,004 2011.07 45 1,004 2011.08 59 1,005 2011.06 73...

    docs.groupdocs.com/viewer/python-net/_output_fi...
  5. Email to HTML Conversion Introduced in GroupDoc...

    GroupDocs team is glad to announce monthly release of .NET Document Conversion API v17.9.0. In this monthly release new document conversion features like Convert from email to HTML document and email to diagram are introduced. This release is also including major fixes and improvements. We recommend our users to download the new release and use the new exciting features to enhance their application. .NET Document Conversion API - Major Changes This monthly release of GroupDocs....GroupDocs team is glad to announce monthly release of .NET Document Conversion API v17.9.0. In this monthly release new document conversion features like Convert from email to HTML document and email to diagram are introduced. This release is also including major fixes and improvements. We recommend our users to download the new release and use the new exciting features to enhance their application. .NET Document Conversion API - Major Changes This monthly release of GroupDocs.

    blog.groupdocs.com/conversion/groupdocs.convers...
  6. Problems with date time converting .eml file - ...

    Hello, I’m having a problem converting the attached .eml file and the time displayed. In Outlook it displays as 11:21. image.png (1.4 KB) The UTC time in the email headers is 10:21. Interestingly the other e-mails in…...Hello, I’m having a problem converting the attached .eml file and the time displayed. In Outlook it displays as 11:21. image.png (1.4 KB) The UTC time in the email headers is 10:21. Interestingly the other e-mails in…

    forum.groupdocs.com/t/problems-with-date-time-c...
  7. Determine the file type | GroupDocs

    This article explains how to get a type of a file with GroupDocs.Viewer for .NET using .NET / C#....file extension or media type header, you can try determining file...

    docs.groupdocs.com/viewer/net/how-to-determine-...
  8. Conversion from STL and IFC is Supported in Gro...

    We are pleased to announce another monthly release of GroupDocs.Conversion for Java 17.10. This release permits users to hide comments when converting from Cells. Conversion from STL and IFC is also introduced in 17.10 version of the API. Aside these features, API covers many improvements and bug fixes. Such as Slides to XPS conversion is improved. We’d recommend you to download this latest release and share your documents conversion experience....We are pleased to announce another monthly release of GroupDocs.Conversion for Java 17.10. This release permits users to hide comments when converting from Cells. Conversion from STL and IFC is also introduced in 17.10 version of the API. Aside these features, API covers many improvements and bug fixes. Such as Slides to XPS conversion is improved. We’d recommend you to download this latest release and share your documents conversion experience.

    blog.groupdocs.com/conversion/conversion-from-s...
  9. CAD on GroupDocs Blog | Document Automation Sol...

    CAD on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in CAD on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDocs.Metadat......CAD on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in CAD on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDocs.Metadat...

    blog.groupdocs.com/id/tag/cad/index.xml
  10. Working with metadata in AVI files | GroupDocs

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System.

    docs.groupdocs.com/metadata/java/working-with-m...