Save document to the specified location

Following code shows usage of save(String) method.

advanced_usage.saving_documents.SaveDocumentToTheSpecifiedLocation

// Specify an absolute or relative path to your document. Ex: "C:\\Docs\\test.doc"
Watermarker watermarker = new Watermarker("test.doc");                                  
                                                                                                 
// watermarking goes here                                                                        
TextWatermark watermark = new TextWatermark("Test watermark", new Font("Arial", 12));            
watermarker.add(watermark);                                                                      
                                                                                                 
// Saves the document to the specified location                                                  
watermarker.save("test.doc");                                                          
                                                                                                 
watermarker.close();