Sort Score
Result 10 results
Languages All
Labels All
Results 2,701 - 2,710 of 8,769 for

view

(0.05 sec)
  1. Don't convert empty lines between lines into pa...

    As an example, say I have: This is standard text. Likewise. > This is quoted. > > As is this. > > > This is double-quoted. > > > > This is double-quoted. This is standard text. Likewise. If I select solely: > This is quoted. > > As is th......zip to view the .eml file contained. The...

    github.com/adam-p/markdown-here/issues/721
  2. r - CSS: Cascading Style Sheets | MDN

    The r CSS property defines the radius of a circle. It can only be used with the SVG element. If present, it overrides the circle's r attribute....second is using 200 and 100 SVG view box units, 30% is a proportional...modified on Oct 8, 2024 by . View this page on GitHub • Report...

    developer.mozilla.org/en-US/docs/Web/CSS/r
  3. GroupDocs.Conversion for .NET 23.4 Release Note...

    Features and enhancements introduced in GroupDocs.Conversion for .NET 23.4....CONVERSIONNET-5952 Bug Cannot view output PNG in firefox CONVERSIONNET-5986...

    docs.groupdocs.com/conversion/net/groupdocs-con...
  4. Protect PDF document | Documentation

    Protect PDF documents when rendering documents using GroupDocs.Viewer for Python via .NET... view ( pdf_options ) Was this page...

    docs.groupdocs.com/viewer/python-net/protect-pd...
  5. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  6. 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:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/working-with-bm...
  7. Extended File Format Support | .NET Redaction A...

    Download GroupDocs.Redaction for .NET 23.11 (MSI installer) to enhance document redaction with support for images & presentations within your C# apps!...Save(); }; } Source* You can view the list of all new features...

    releases.groupdocs.com/redaction/net/new-releas...
  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:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/working-with-b...
  9. Protect PDF document | Documentation

    Protect PDF documents when rendering documents using GroupDocs.Viewer for Java... view ( viewOptions ); } Was this...

    docs.groupdocs.com/viewer/java/protect-pdf-docu...
  10. 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.... You are welcome to view and edit metadata of PDF, DOC...

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