Sort Score
Result 10 results
Languages All
Labels All
Results 171 - 180 of 1,201 for

make

(0.06 sec)
  1. Load from Stream | Documentation

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to Make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...can use document instance to make redactions redactor . apply...

    docs.groupdocs.com/redaction/java/load-from-str...
  2. How to Convert PDF to Word in Java

    Take look at how to convert PDF to Word in Java for document conversion and use the sample code to convert PDF to DOCX using Java in your projects straight away....circumstances, you will need to make modifications to a PDF document...

    kb.groupdocs.com/conversion/java/how-to-convert...
  3. Releasing GroupDocs.Viewer for .NET 3.6.0 - New...

    We are inspired to see a wide number of users across the world using GroupDocs.Viewer API and their feedback always motivate us to Make improvements and add support for more features. Therefore, today, we are announcing another monthly release of GroupDocs.Viewer for .NET with 7 new features, 9 fixes, and 5 improvements. Let’s have an overview of the latest version. Document Viewer API - New FeaturesFollowing are the new features introduced in GroupDocs....feedback always motivate us to make improvements and add support...

    blog.groupdocs.com/viewer/releasing-groupdocs-v...
  4. GroupDocs.Redaction for Python via .NET | Docum...

    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/
  5. GroupDocs.Search Overview | Documentation

    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...
  6. Render with responsive layout | Documentation

    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...
  7. Online Document Viewer from GroupDocs: How It W...

    The technology research firm Gartner states that the demand for SaaS (Software as a Service) products will continue to grow in a recent report (February, 2013). The report highlights that some of the top segments for the SaaS market will be: Office suites, IT operations management and storage management. Corporates understand the need to stay abreast technology trends and are taking the necessary steps to move towards cloud or web-based document management systems.... It makes it easy to share documents and...support a huge range of CRMs to make sure that you can embed files...

    blog.groupdocs.com/viewer/online-document-viewe...
  8. Save overwriting original file | Documentation

    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...
  9. How to Use GroupDocs' Online Signature App to S...

    In one of our previous articles we discussed how a typical online signature service works and took a brief look at GroupDocs’ online signature app. Today we’ll see how this application helps you to sign a document online step by step. This article doesn’t cover all the features of the app, just the basics you need to know to sign a document online. Please Note: to start using GroupDocs’ online signature service, you need to register with us first.... Make sure that the role is Signer...

    blog.groupdocs.com/signature/how-to-use-groupdo...
  10. Converting certain HTML to PDF ignores 'nowrap'...

    Converting the attached HTML to PDF does work fine, but the result does not look too good. In the converted PDF, the first 3 columns get wrapped, which we would like to prevent somehow: image.jpg (227.7 KB) We made se…...under our control and we can make any modification required. What...25.1. I though it would not make a difference, but it seems it...

    forum.groupdocs.com/t/converting-certain-html-t...