Last active
June 23, 2023 17:32
-
-
Save groupdocs-com-kb/309a9649cef6c898bbe1d9195d310d1c to your computer and use it in GitHub Desktop.
How to Convert ODT to JPG using Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-odt-to-jpg-using-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.ConvertOptions; | |
public class ConvertODTtoJPGusingJava { | |
public static void main(String[] args) { | |
// Set License to avoid the limitations of Conversion library | |
License license = new License(); | |
license.setLicense("GroupDocs.Conversion.lic"); | |
// Import ODT document | |
Converter converter = new Converter("input.odt"); | |
// Get conversion option for final output document | |
ConvertOptions convertoptions = converter.getPossibleConversions("jpg") | |
.getSource().getConvertOptions(); | |
// Save the JPG to disk | |
converter.convert("result.jpg", convertoptions); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment