Sort Score
Result 10 results
Languages All
Labels All
Results 2,791 - 2,800 of 12,327 for

new

(0.61 sec)
  1. Extracting Common Image Information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = New Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Metadata metadata = new Metadata ( Constants . InputPng...

    docs.groupdocs.com/metadata/net/extracting-comm...
  2. Control temporary files | GroupDocs

    By following this guide, you will learn how to control temporary files used by GroupDocs.Viewer for Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...CustomTemporaryFileM customTemporaryFileM = new CustomTemporaryFileM (); TemporaryFileManager...

    docs.groupdocs.com/viewer/java/control-temporar...
  3. Working with metadata in FLV files | GroupDocs

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = New Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Consulting Blog Knowledge Base New Releases Status Websites aspose...FlvReadHeaderPropert try ( Metadata metadata = new Metadata ( Constants . InputFlv...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Note Format is Supported in GroupDocs.Merger fo...

    This month’s release of GroupDocs.Merger for .NET 18.9 comes with some New features. API enables you to work with password-protected ODT and OTT file formats. You can also trim Note formatted documents. Please see release notes for further details. Features Note format is supported by following methods: Join MovePage RemovePage Split document SwapPages Trim Implement security methods for the following formats: OTT ODT Available Channels and Resources Here are a few channels and resources for you to learn, try and get technical support on GroupDocs....9 comes with some new features. API enables you to...

    blog.groupdocs.com/merger/note-format-is-suppor...
  5. PowerPoint on GroupDocs Blog | Document Automat...

    PowerPoint on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in PowerPoint on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Gro......Sürüm Özetleri Explore what’s new in GroupDocs.Viewer for .NET...

    blog.groupdocs.com/tr/tag/powerpoint/index.xml
  6. January 2026 on GroupDocs Blog | Document Autom...

    January 2026 on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in January 2026 on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers......انتشار ژانویه 2026 Explore what’s new in GroupDocs.Total for .NET 25...

    blog.groupdocs.com/fa/tag/january-2026/index.xml
  7. Scan Barcode from RTF using C#

    This guide explains how to scan barcode from RTF using C#, with a code example to help you efficiently extract barcode from RTF in C#, ensuring a smooth and seamless process....barcodes from RTF files Create a new Parser object by giving the path...elevate your C# applications to new heights. Previously, we provided...

    kb.groupdocs.com/parser/net/scan-barcode-from-r...
  8. ImageSignature on GroupDocs Blog | Document Aut...

    ImageSignature on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in ImageSignature on GroupDocs Blog | Document Automation Solutions for .NET & Java Develo......12월 릴리스 하이라이트 Explore what’s new in GroupDocs.Signature for .NET...

    blog.groupdocs.com/ko/tag/imagesignature/index.xml
  9. Customer Feedback Sentiment Analysis in C# | C#...

    C# Sentiment Analysis Automation. Analyze customer feedback with C# API. Check how positive/negative are the comments about your product....mistakes"; var sentimentClassifier = new SentimentClassifier(); /// PositiveProbability...probabilities. var sentiments = new string\[\] { "Now that is out...

    blog.groupdocs.com/classification/classify-cust...
  10. Merge archives | GroupDocs

    Learn how to merge archive files, combine archive files into one file programmatically in Java language using GroupDocs.Merger for Java library....Consulting Blog Knowledge Base New Releases Status Websites aspose...archive file Merger merger = new Merger ( "c:\sample1.zip" );...

    docs.groupdocs.com/merger/java/merge/archives/