Sort Score
Result 10 results
Languages All
Labels All
Results 1,471 - 1,480 of 10,115 for

new

(0.09 sec)
  1. Deleting documents | Documentation

    This page contains information about deleting documents in the search network....Consulting Blog Knowledge Base New Releases Status Websites aspose...documents" ); string [] fileNames = new string [ filePaths . Length ];...

    docs.groupdocs.com/search/net/deleting-documents/
  2. Ways to Convert WebP to PNG

    Convert WebP to PNG images using online & free WebP converter. Developers can perform the conversion with few lines of code using .NET & Java API....using (Converter converter = new Converter("path/image.webp"))...ImageConvertOptions options = new ImageConvertOptions { // Set...

    blog.groupdocs.com/conversion/convert-webp-to-png/
  3. List attachments | Documentation

    Retrieve a list of document attachments from your emails, Outlook data files, archives and PDF documents with GroupDocs.Viewer for .NET...Consulting Blog Knowledge Base New Releases Status Websites aspose...... using ( Viewer viewer = new Viewer ( "sample.msg" )) { //...

    docs.groupdocs.com/viewer/net/how-to-list-attac...
  4. Get changes coordinates | Documentation

    This article explains how to obtain coordinates for detected changes at a document pages preview when compare documents with GroupDocs.Comparison for Java...Consulting Blog Knowledge Base New Releases Status Websites aspose.... try ( Comparer comparer = new Comparer ( "source.docx" )) {...

    docs.groupdocs.com/comparison/java/get-changes-...
  5. Basic usage | Documentation

    GroupDocs.Watermark library provides the ability to manipulate different watermark types such as TextWatermark, ImageWatermark. These watermarks could be added to documents, updated, removed, or searched inside already watermarked documents. Our product also provides information about document type and structure - file type, size, page count, etc. and generates document page previews based on provided options. Here are the main concepts of the GroupDocs.Watermark API: Watermarker is the main class that contains all the required methods for manipulating document watermarks....Consulting Blog Knowledge Base New Releases Status Websites aspose...( Watermarker watermarker = new Watermarker ( "document.pdf"...

    docs.groupdocs.com/watermark/net/basic-usage/
  6. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties....Consulting Blog Knowledge Base New Releases Status Websites aspose...forEach ( file => { var metadata = new groupdocs . metadata . Metadata...

    docs.groupdocs.com/metadata/nodejs-java/removin...
  7. Export annotations and retrieve document pages ...

    post. Tagged with net, annotator, api, image....Share to Reddit Share to Hacker News Share to Facebook Share to Mastodon...AnnotationImageHandl annotator = new AnnotationImageHandl(cfg); //...

    dev.to/groupdocs/export-annotations-and-retriev...
  8. Build your first search solution | Documentation

    First of all you need to create an index. An index can be created in memory or on disk. An index created in memory cannot be saved after exiting your program. In contrast, an index created on disk may be loaded in the future to continue working....Consulting Blog Knowledge Base New Releases Status Websites aspose...search index. Step #1: Create new index First of all you need to...

    docs.groupdocs.com/search/nodejs-java/build-you...
  9. Get document information | Documentation

    This article explains how to detect document file type, obtain document details,  retrieve list of existing form fields and added signatures, calculate pages count when processing document file with GroupDocs.Signature....Consulting Blog Knowledge Base New Releases Status Websites aspose...disk. Signature signature = new Signature ( "sample.pdf" ); //...

    docs.groupdocs.com/signature/java/get-document-...
  10. Working with metadata in PDF documents | Docume...

    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....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Metadata metadata = new Metadata ( Constants . InputPdf...

    docs.groupdocs.com/metadata/net/working-with-me...