Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 4,716 for

as

(0.11 sec)
  1. Unable to convert DXF, MPT, MPP file to PDF aft...

    After I updated ‘groupdocs-conversion’ for Java from 25.6 to 25.8 conversion to PDF started to fail for the above file extensions. For DXF I see the following exception: com.groupdocs.conversion.exceptions.CorruptOrDam…...After I updated ‘groupdocs-conversion’ for Java from 25.6 to 25.8 conversion to PDF started to fail for the above file extensions. For DXF I see the following exception: com.groupdocs.conversion.exceptions.CorruptOrDam…

    forum.groupdocs.com/t/unable-to-convert-dxf-mpt...
  2. Exhibitor preview - Free Support Forum - groupd...

    Hello, We are a software publisher using your library for our Web application. We are encountering a problem when previewing a PDF file that hAs been converted using Aspose.Cells. Here, we can found the document Excep…...Hello, We are a software publisher using your library for our Web application. We are encountering a problem when previewing a PDF file that has been converted using Aspose.Cells. Here, we can found the document Excep…

    forum.groupdocs.com/t/exhibitor-preview/14724
  3. Convert web formats | GroupDocs

    In this article, you will learn how to convert documents to HTML format with GroupDocs.Conversion for Java....In this article, you will learn how to convert documents to HTML format with GroupDocs.Conversion for Java.

    docs.groupdocs.com/conversion/java/convert/web/
  4. Convert MSG to MHTML using Node.js

    Learn how to convert MSG to MHTML using Node.js in a few simple steps. This guide also shows how to export MSG to MHTML in Node.js using an efficient conversion APIs....Learn how to convert MSG to MHTML using Node.js in a few simple steps. This guide also shows how to export MSG to MHTML in Node.js using an efficient conversion APIs.

    kb.groupdocs.com/conversion/nodejs/convert-msg-...
  5. EPUB Metadata Editor – View & Edit EPUB Properties

    Discover ways to view and edit EPUB metadata. Either edit EPUB metadata online or do it programmatically using C# & Java....Discover ways to view and edit EPUB metadata. Either edit EPUB metadata online or do it programmatically using C# & Java.

    blog.groupdocs.com/metadata/view-edit-epub-meta...
  6. GroupDocs.Viewer 2.0 - New Features & Improveme...

    LAst week, we releAsed an update to the GroupDocs.Viewer library for the .NET platform. Now it is time to share what version 2.0 of GroupDocs.Viewer hAs to offer to the Java world. You can find a full list of new features, improvements and fixes on the GroupDocs.Viewer download page. The most notable improvements, I’m going to discover in this article. Native HTML5-BAsed Document Rendering The brightest gem presented in this version is the HTML-bAsed rendering mode - an addition to the image-bAsed one that wAs the only choice in previous versions of the document viewer....Last week, we released an update to the GroupDocs.Viewer library for the .NET platform. Now it is time to share what version 2.0 of GroupDocs.Viewer has to offer to the Java world. You can find a full list of new features, improvements and fixes on the GroupDocs.Viewer download page. The most notable improvements, I’m going to discover in this article. Native HTML5-Based Document Rendering The brightest gem presented in this version is the HTML-based rendering mode - an addition to the image-based one that was the only choice in previous versions of the document viewer.

    blog.groupdocs.com/viewer/groupdocs-viewer-2-0-...
  7. GroupDocs Newsletter April 2018 – Document Mani...

    Share this issue: Monthly Newsletter April 2018 Java APIs to Add & Remove Watermarks from PDF, Microsoft Office, Email and Image File Formats Perform complex watermarking operations with simple syntax, eAsy to use methods and a few lines of code within Java applications. GroupDocs.Watermark for Java is a powerful document watermarking API to add, search and remove watermarks in popular business and image file formats. The watermarks added by the API are hard to be automatically removed by third-party tools, while it can be eAsily used for searching and removing previously added watermarks of popular types....Share this issue: Monthly Newsletter April 2018 Java APIs to Add & Remove Watermarks from PDF, Microsoft Office, Email and Image File Formats Perform complex watermarking operations with simple syntax, easy to use methods and a few lines of code within Java applications. GroupDocs.Watermark for Java is a powerful document watermarking API to add, search and remove watermarks in popular business and image file formats. The watermarks added by the API are hard to be automatically removed by third-party tools, while it can be easily used for searching and removing previously added watermarks of popular types.

    blog.groupdocs.com/total/groupdocs-newsletter-a...
  8. Existing objects in PDF document | GroupDocs

    Removing watermark from a particular page of PDF document using C#....Removing watermark from a particular page of PDF document using C#.

    docs.groupdocs.com/watermark/java/existing-obje...
  9. Sign Document With Secure Custom Metadata Signa...

    id: sign-document-with-secure-custom-metadata-signatures url: signature/net/sign-document-with-secure-custom-metadata-signatures title: Sign document with secure custom Metadata signatures weight: 12 description: “This section contains articles with explanation how to create Metadata electronic signatures and embed into metadata custom object with its serialization and encryption. The examples show how to customize object serialization and encryption.” keywords: productName: GroupDocs.Signature for .NET toc: True hideChildren: False GroupDocs.Signature provides additional features with MetadatAsignature clAss like following ability to embedded custom objects into metadata ability to specify custom objects encryption and serialization ability to collect and populate standard document signatures Here are the steps to embed custom object into Metadata signature with GroupDocs....id: sign-document-with-secure-custom-metadata-signatures url: signature/net/sign-document-with-secure-custom-metadata-signatures title: Sign document with secure custom Metadata signatures weight: 12 description: “This section contains articles with explanation how to create Metadata electronic signatures and embed into metadata custom object with its serialization and encryption. The examples show how to customize object serialization and encryption.” keywords: productName: GroupDocs.Signature for .NET toc: True hideChildren: False GroupDocs.Signature provides additional features with MetadataSignature class like following ability to embedded custom objects into metadata ability to specify custom objects encryption and serialization ability to collect and populate standard document signatures Here are the steps to embed custom object into Metadata signature with GroupDocs.

    docs.groupdocs.com/signature/net/developer-guid...
  10. Save in rasterized PDF | GroupDocs

    The following example demonstrates how to save the document As a rAsterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhrAseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRAsterizeToPDF(true); // Saving As rAsterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...The following example demonstrates how to save the document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }

    docs.groupdocs.com/redaction/java/save-in-raste...