Sort Score
Result 10 results
Languages All
Labels All
Results 51 - 60 of 10,567 for

new

(0.03 sec)
  1. Control Meta-Data and Build a Custom UI with th...

    GroupDocs.Annotation for Java is a lightweight library that allows end users to annotate PDF and Microsoft Office documents, raster images, AutoCAD drawings and 50+ types of files without the need to install the software that the documents or images were created in. A convenient web UI allows users to view, annotate, redact, comment on and share documents from any web-enabled device. Recently we’ve released a New GroupDocs.Annotation for Java library – version 1.... Recently we’ve released a new GroupDocs.Annotation for Java...handler methods, here is a list of new, context-independent ones that...

    blog.groupdocs.com/annotation/control-meta-data...
  2. Manipulate Metadata Properties in Documents wit...

    We have a major update for our customers who are using our metadata manipulation API - GroupDocs.Metadata for .NET. We have revamped the architecture of the API to improve and simplify the process of reading, updating, searching or removing the metadata properties from the documents. So let’s take a tour of version 19.11. Why do you need to upgrade? You should upgrade to the latest release because: The_ Metadata_ class is introduced as a single entry point to manage metadata in all supported formats....We have a major update for our customers who are using our metadata manipulation API - GroupDocs.Metadata for .NET. We have revamped the architecture of the API to improve and simplify the process of reading, updating, searching or removing the metadata properties from the documents. So let’s take a tour of version 19.11. Why do you need to upgrade? You should upgrade to the latest release because: The_ Metadata_ class is introduced as a single entry point to manage metadata in all supported formats.

    blog.groupdocs.com/metadata/manipulate-metadata...
  3. Parse data from PDF documents | Documentation

    To extract data from PDF documents parseForm and parseByTemplate(Template) methods are used. Both methods return DocumentData object. For details, see Working With Extracted Data. Here are the steps to extract data from PDF Form: Instantiate Parser object for the initial document Call parseForm method and obtain the DocumentData object; Check if data isn’t null (parse form is supported for the document); Iterate over field data to obtain form data. The following example shows the use case when a user fills in PDF form and send it by email (for example)....Consulting Blog Knowledge Base New Releases Status Websites aspose...class try ( Parser parser = new Parser ( Constants . SampleCarWashPdf...

    docs.groupdocs.com/parser/java/parse-data-from-...
  4. 在 Java 中從發票或收據中提取數據 |解析PDF

    在 Java 中以編程方式從 PDF 發票或收據中提取發票數據。 GroupDocs 的文檔解析和數據提取 API 支持各種格式。...templateItems = new TemplateItem[] { new TemplateField(new TemplateFixedPositio(new...TemplateFixedPositio(new Rectangle(new Point(35, 135), new Size(100, 10)))...

    blog.groupdocs.com/zh-hant/parser/extract-data-...
  5. Load PDF document with options | Documentation

    Learn this article and check how to load and convert PDF documents with advanced options using GroupDocs.Conversion for .NET API....Consulting Blog Knowledge Base New Releases Status Websites aspose...getLoadOptions = loadContext => new PdfLoadOptions { FlattenAllFields...

    docs.groupdocs.com/conversion/net/load-pdf-docu...
  6. Add watermarks to PowerPoint presentations | Do...

    Add watermarks to PowerPoint presentations. Add watermark to particular slide with simple or advanced settings easily....Consulting Blog Knowledge Base New Releases Status Websites aspose...PresentationLoadOpti loadOptions = new PresentationLoadOpti (); // Specify...

    docs.groupdocs.com/watermark/net/add-watermarks...
  7. Indexing from different sources | Documentation

    GroupDocs.Search allows indexing documents from various sources....Consulting Blog Knowledge Base New Releases Status Websites aspose...index IndexSettings settings = new IndexSettings (); settings ....

    docs.groupdocs.com/search/java/indexing-from-di...
  8. Update annotations | Documentation

    The page describes how to edit annotation properties - change annotation position, size, appearance etc. when annotate documents using GroupDocs.Annotation for .NET....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Annotator annotator = new Annotator ( "input.pdf" )) {...

    docs.groupdocs.com/annotation/net/update-annota...
  9. Add watermarks to diagram documents | Documenta...

    Adding watermark to all pages of a particular type Using GroupDocs.Watermark, you can add watermark to all pages of a particular type in a document. It consists of following steps. Load the document Create and initialize watermark object Set watermark properties Add watermark by specifying page type using setPlacementType() method of DiagramShapeWatermarkOptions Save the document Following code shows how to add watermark to a particular type of the pages....Consulting Blog Knowledge Base New Releases Status Websites aspose...DiagramLoadOptions loadOptions = new DiagramLoadOptions (); // Specify...

    docs.groupdocs.com/watermark/java/add-watermark...
  10. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = New Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Consulting Blog Knowledge Base New Releases Status Websites aspose...CadReadNativeMetadat try ( Metadata metadata = new Metadata ( Constants . InputDxf...

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