Sort Score
Result 10 results
Languages All
Labels All
Results 2,821 - 2,830 of 12,288 for

new

(0.14 sec)
  1. Font extraction options | GroupDocs

    Learn how to extract fonts from input Word documents when editing with GroupDocs.Editor API for Node.js....Consulting Blog Knowledge Base New Releases Status Websites aspose...FontExtractionOption ; let editOptions = new WordProcessingEditOp (); editOptions...

    docs.groupdocs.com/editor/nodejs-java/font-extr...
  2. DPI setting ignored when converting MSG to PDF ...

    Hello, Converting the attached MSG file to PDF, creates a document with as size of 10.42 x 14.74 inch, according to Adobe Reader. image.png (66.0 KB) With the specified 750 x 1061 pixels at the default 96 dpi, that sh…...conv = new Converter(documentPath)) { var options = new PdfConvertOptions()... For example: var options = new PdfConvertOptions() { Dpi = 96...

    forum.groupdocs.com/t/dpi-setting-ignored-when-...
  3. Adjusting comparison sensitivity | GroupDocs

    Learn more about document comparison sensitivity and how to adjust it to achieve best performance and accuracy when comparing documents with GroupDocs.Comparison for Node.js via Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...source document const comparer = new groupdocs . Comparer ( sourceFile...

    docs.groupdocs.com/comparison/nodejs-java/adjus...
  4. GroupDocs.Comparison on GroupDocs Blog | Docume...

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

    blog.groupdocs.com/ko/tag/groupdocs.comparison/...
  5. Display PDF, Microsoft Office and 50+ Other Doc...

    Kentico is quite a popular CMS focused largely on document management. At GroupDocs we create APIs that allow developers to enhance their applications and sites with convenient document collaboration tools. One of such tools is a multi-format, cross-platform compatible document viewer – GroupDocs.Viewer. It allows end users to view over 50 types of documents and images from any modern web-browser and without having to install any office software or plugins.... you may be interested in a new plugin that we’ve just released...the Kentico marketplace. This new version of the plugin is free...

    blog.groupdocs.com/viewer/display-pdf-microsoft...
  6. Dynamic Insertion of Links to Bookmarks, Cells ...

    Document Automation (or document assembly) is widely used by organizations for their reporting services and GroupDocs.Assembly for .NET and Java APIs provide a complete package of features required to build reports dynamically. Keeping the modern trends in mind and to meet the emerging requirements of our customers, we keep introducing the New features. Recently, we have released the v19.11 of our document automation API with quite a useful set of features....customers, we keep introducing the new features. Recently, we have released...give you an overview of what is new in the latest release. Dynamic...

    blog.groupdocs.com/assembly/net-java-document-a...
  7. Working with Spreadsheets in GroupDocs.Viewer f...

    Learn how to get load a Spreadsheet (Excel) document and render it to HTML, PDF, PNG and JPEG with different options...PdfViewOptions pdfOptions = new PdfViewOptions( "Output_spreadsheet...PngViewOptions pngOptions = new PngViewOptions( "worksheet_{0}...

    blog.groupdocs.com/viewer/working-with-spreadsh...
  8. Merge archives | GroupDocs

    Learn how to merge archive files, combine archive files into one file programmatically in Node.js via Java language using GroupDocs.Merger for Node.js via Java library....Consulting Blog Knowledge Base New Releases Status Websites aspose...`c:/sample1.zip` ; const merger = new groupdocs . merger . Merger (...

    docs.groupdocs.com/merger/nodejs-java/merge/arc...
  9. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = New Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); 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); } Working with XMP Metadata GroupDocs....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Metadata metadata = new Metadata ( Constants . InputGif...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = New Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Consulting Blog Knowledge Base New Releases Status Websites aspose...GettingKnownProperty try ( Metadata metadata = new Metadata ( Constants . InputDoc...

    docs.groupdocs.com/metadata/java/getting-known-...