Sort Score
Result 10 results
Languages All
Labels All
Results 3,021 - 3,030 of 4,638 for

as

(0.03 sec)
  1. EPUB Documents Now Fully Supported in GroupDocs...

    We are really pleAsed to announce the monthly releAse of GroupDocs.Text for .NET 17.03 API. This releAse comes up with five new features. GroupDocs.Text hAs extended the Media type detector clAss and the API is now able to detect ZIP containers and EPUB documents. Not only this, the latest releAse hAs improved the handling for EPUB documents and allows its users to extract text and highlights beside adding the functionality to search for some text in an EPUB document....We are really pleased to announce the monthly release of GroupDocs.Text for .NET 17.03 API. This release comes up with five new features. GroupDocs.Text has extended the Media type detector class and the API is now able to detect ZIP containers and EPUB documents. Not only this, the latest release has improved the handling for EPUB documents and allows its users to extract text and highlights beside adding the functionality to search for some text in an EPUB document.

    blog.groupdocs.com/parser/groupdocs.text-.net-1...
  2. GroupDocs.Search for .NET 16.11 Introduces Case...

    We As members of GroupDocs team are immensely delighted to see our users community growing every day. There hAs also been an inflow of customers recommendations and feedback, for which we owe you our gratitude. We thank you , for providing us the impetus to work even harder at improving our performance. Our whole team is always endeavoring to cater to your needs and requirements to our fullest possible potential thus providing the most innovative and enhanced solutions to our valuable customers....We as members of GroupDocs team are immensely delighted to see our users community growing every day. There has also been an inflow of customers recommendations and feedback, for which we owe you our gratitude. We thank you , for providing us the impetus to work even harder at improving our performance. Our whole team is always endeavoring to cater to your needs and requirements to our fullest possible potential thus providing the most innovative and enhanced solutions to our valuable customers.

    blog.groupdocs.com/search/groupdocs-search-net-...
  3. New release of GroupDocs.Viewer for .NET introd...

    GroupDocs.Viewer for .NET releAses v3.1.0 with more flexibility and improved features. GroupDocs Team remains busy in improving the product according to customers’ needs and their feedback. We always keep finding the ways to enhance the product’s scope and improve existing features. Let’s have a look at the improvements we have made. Improved Features GroupDocs.Viewer for .NET v3.1.0 hAs come with many improved features in the latest version. Listed below are the improved features in this releAse....GroupDocs.Viewer for .NET releases v3.1.0 with more flexibility and improved features. GroupDocs Team remains busy in improving the product according to customers’ needs and their feedback. We always keep finding the ways to enhance the product’s scope and improve existing features. Let’s have a look at the improvements we have made. Improved Features GroupDocs.Viewer for .NET v3.1.0 has come with many improved features in the latest version. Listed below are the improved features in this release.

    blog.groupdocs.com/viewer/new-release-groupdocs...
  4. Cancel Search Operation at Runtime using GroupD...

    We are pleAsed to announce the releAse of GroupDocs.Search for .NET 18.1. Using the latest version, you can **cancel search operation **at runtime. Furthermore, you can search with a query in the form of object tree As a parameter, search with the **wildcard **in phrAse search, use **ISO 8610 **date format in date range search, and use **collection **of date formats for range search. We would recommend you to enhance your applications using this latest version....We are pleased to announce the release of GroupDocs.Search for .NET 18.1. Using the latest version, you can **cancel search operation **at runtime. Furthermore, you can search with a query in the form of object tree as a parameter, search with the **wildcard **in phrase search, use **ISO 8610 **date format in date range search, and use **collection **of date formats for range search. We would recommend you to enhance your applications using this latest version.

    blog.groupdocs.com/search/cancel-search-operati...
  5. GroupDocs.Metadata Product Family on GroupDocs ...

    GroupDocs.Metadata Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Metadata Product Family on GroupDocs Blog | Document Autom......GroupDocs.Metadata Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Metadata Product Family on GroupDocs Blog | Document Autom...

    blog.groupdocs.com/categories/groupdocs.metadat...
  6. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, pleAse use the getDocumentProperties method defined in the DocumentRootPackage clAss....Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class.

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, pleAse use the DocumentProperties property defined in the DocumentRootPackage clAss....Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage<PdfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class.

    docs.groupdocs.com/metadata/net/working-with-me...
  8. GroupDocs.Signature Product Family on GroupDocs...

    GroupDocs.Signature Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Signature Product Family on GroupDocs Blog | Document Aut......GroupDocs.Signature Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Signature Product Family on GroupDocs Blog | Document Aut...

    blog.groupdocs.com/categories/groupdocs.signatu...
  9. Get error when using metadata jar in fat jar - ...

    Hi Yuriy, Thanks for your sugggestion. I tried to use shade plugin in Maven to rename clAsses. But it still doesn’t work for me. The error message : “Caused by: java.lang.NoClAssDefFoundError: Could not initialize clAss…...Hi Yuriy, Thanks for your sugggestion. I tried to use shade plugin in Maven to rename classes. But it still doesn’t work for me. The error message : “Caused by: java.lang.NoClassDefFoundError: Could not initialize class&hellip;

    forum.groupdocs.com/t/get-error-when-using-meta...
  10. Running in Docker | GroupDocs

    Learn how to run GroupDocs.Conversion for Node.js via Java inside Docker containers with examples, dependencies, and troubleshooting....Learn how to run GroupDocs.Conversion for Node.js via Java inside Docker containers with examples, dependencies, and troubleshooting.

    docs.groupdocs.com/conversion/nodejs-java/runni...