Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/9789ce7039096afd57b9b0e49408f4e3 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/9789ce7039096afd57b9b0e49408f4e3 to your computer and use it in GitHub Desktop.
// For complete examples and data files, please go to https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-Java
try {
// Setup GroupDocs.Viewer config
ViewerConfig config = Utilities.getConfiguration();
// Create image handler
ViewerImageHandler imageHandler = new ViewerImageHandler(config);
// Set add print action property
PdfFileOptions options = new PdfFileOptions();
options.setTransformations(Transformation.AddPrintAction);
// Get file as pdf with print action
FileContainer container = imageHandler.getPdfFile(fileName, options);
Utilities.saveAsFile(fileName, container.getStream(), ".pdf");
} catch (Exception exp) {
System.out.println("Exception: " + exp.getMessage());
exp.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment