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

make

(0.05 sec)
  1. Simple JSP Front End example for GroupDocs.View...

    We are excited to announce a simple front-end for GroupDocs.Viewer for Java API so newbies can start using it quickly, instead of learning the rich features and complexities provided in GroupDocs.Viewer for Java using Struts2 or GroupDocs.Viewer for Java Using Servlets. Simplicity comes with many advantages and disadvantages. JSP front-end is a minimum implementation and demonstrates how simple it is to get started with GroupDocs.Viewer for Java. This removes features some useful features, like the user cannot download the document, cannot print, zoom, etc....document into HTML, SVG and CSS to make them display on the browser...

    blog.groupdocs.com/viewer/groupdocs-viewer-java...
  2. How to Run Examples | Documentation

    This article describes how to run Java Search API code examples....examples using NPM To get started make sure that is installed. Clone...

    docs.groupdocs.com/search/nodejs-java/how-to-ru...
  3. Extracting metadata | Documentation

    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. 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...
  5. 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...
  6. Work with Search Results using Java

    Learn how to work with search results using Java and retrieve search results in Java efficiently, optimizing search processes for better performance and accuracy....knowing how to interpret and make use of these results can greatly...the full step-by-step process, make sure to read our detailed article...

    kb.groupdocs.com/search/java/work-with-search-r...
  7. Extracting metadata | Documentation

    This article shows how to extract metadata properties from your files in C# .NET solution programmatically with GroupDocs.Metadata for .NET...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/net/extracting-meta...
  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. GroupDocs.Total for Python 25.10 – Latest Updat...

    Explore what’s new in GroupDocs.Total for Python 25.10. Available now on NuGet and GroupDocs website....NET‑based components that make up the Total suite for Python...

    blog.groupdocs.com/total/groupdocs-total-for-py...
  10. 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...