Sort Score
Result 10 results
Languages All
Labels All
Results 181 - 190 of 1,535 for

make

(0.06 sec)
  1. GroupDocs.Conversion Product Family

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....functionality or a user looking to make a PDF document more accessible...quality on zoom-in. These features make the SVG images larger in size...

    blog.groupdocs.com/categories/groupdocs.convers...
  2. Digital Signature using digital Signature Dongl...

    I have a digital signature dongle issued to me by a Certifying Agency (CA) in India. The digitally signed documents using the dongle are legally binding in India. I want to use this dongle for signing documents digitally…...few more details: What is the make/model of your digital signature...questions. My response as follows: Make/model: Watchdata PROXKey Middleware:...

    forum.groupdocs.com/t/digital-signature-using-d...
  3. Extracting metadata | GroupDocs

    Using the GroupDocs.Metadata search engine you can extract desired metadata properties from files of different types. You don’t need to worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....divided into categories that make it easier to find a required...searched for metadata properties Make up a predicate to examine all...

    docs.groupdocs.com/metadata/java/extracting-met...
  4. converted_without_fields.docx

    How to fold origami candy boxes This is a test Have you ever annoyed that you don’t have candy boxes to pack the candies? Candies are easily melting in hot temperature. So it is not suitable to pla...... And make a house to the candies. Search...

    docs.groupdocs.com/conversion/java/_sample_file...
  5. GroupDocs.Redaction for Python via .NET | Group...

    A .NET API for redaction of sensitive and classified information from the documents. You can redact in adobe pdf, redact in excel or in many of different file formats using c#...to help you get started and make the most of the API: Was this...

    docs.groupdocs.com/redaction/python-net/
  6. GroupDocs.Search Overview | GroupDocs

    What Is GroupDocs.Search? GroupDocs.Search is a powerful full-text search API that allows you to search through over 70 document formats in your applications. To Make it possible to search instantly across thousands of documents, they must be added to the index. Why Use GroupDocs.Search as a Developer? No additional software is required to search through documents of supported formats. Great variety of indexing and search options are provided to meet any requirements.... To make it possible to search instantly...

    docs.groupdocs.com/search/nodejs-java/groupdocs...
  7. Render with responsive layout | GroupDocs

    Learn how to render your document with responsive HTML layout that looks great on mobile and desktop devices....feedback Responsive design aims to make web pages render well on a variety...

    docs.groupdocs.com/viewer/java/render-with-resp...
  8. Converting Docx to PDF throws Null Reference Ex...

    Attempting to convert the attached file throws a Null Reference Exception from within an Aspose library included in the GroupDocs product. We are using the most up to date version of convert available. This appears to …...in {0}", outputFolder); } } } Make sure to replace "YourOutputDirectoryP"...

    forum.groupdocs.com/t/converting-docx-to-pdf-th...
  9. Cannot rotate page - Free Support Forum - group...

    I’m trying to rotate page in web-base(groupdoc viewer) but this still cannot be done. I would like to know if this avialible for rotate function and how to....the rotation logic in order to make the rotate function actually...potentially be cached by a browser, so make sure to cleanup the cache when...

    forum.groupdocs.com/t/cannot-rotate-page/15771
  10. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....replacing an original file: // Make a copy of sample file Files...

    docs.groupdocs.com/redaction/java/save-overwrit...