Last active
October 20, 2022 11:46
-
-
Save groupdocs-com-kb/f85e5f1656842cb3ed962f0ae0a70ef4 to your computer and use it in GitHub Desktop.
How to Convert Excel to Image in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-excel-to-image-in-java/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.groupdocs.conversion.Converter; | |
import com.groupdocs.conversion.licensing.License; | |
import com.groupdocs.conversion.options.convert.ImageConvertOptions; | |
public class ConvertExcelToImageInJava { | |
public static void main(String[] args) { // Main function to convert Excel to Image in Java | |
// Remove the watermark in output Excel document by adding license | |
License lic = new License(); | |
lic.setLicense("GroupDocs.Conversion.lic"); | |
// Load the source Excel file for conversion to Excel | |
Converter converter = new Converter("sample.xls"); | |
// Set the convert options for Excel format | |
ImageConvertOptions options = new ImageConvertOptions(); | |
options.setPageNumber(1); | |
options.setPagesCount(1); | |
// Convert and save the XLS in PNG format | |
converter.convert("converted.png", options); | |
System.out.println("Done"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment