Aspose.Total for Java is a comprehensive suite of APIs that enables developers to easily convert JSON format to SVGZ within any Java application. This suite of APIs includes Aspose.Cells for Java and Aspose.Imaging for Java, which can be used to parse JSON to JPEG and convert JPEG to SVGZ respectively.
The process of converting JSON to SVGZ using Aspose.Total for Java is simple and straightforward. Firstly, Aspose.Cells for Java can be used to parse JSON to JPEG. This API provides a wide range of features that enable developers to manipulate and convert various spreadsheet formats, including JSON. It also provides a comprehensive set of features for manipulating and converting JSON files.
Once the JSON file has been parsed to JPEG, Aspose.Imaging for Java can be used to convert the JPEG to SVGZ. This API provides a wide range of features that enable developers to manipulate and convert various image formats, including JPEG. It also provides a comprehensive set of features for manipulating and converting JPEG files.
By using Aspose.Total for Java, developers can easily convert JSON format to SVGZ within any Java application. This suite of APIs provides a comprehensive set of features for manipulating and converting various file formats, including JSON and JPEG. It also provides a simple and straightforward process for converting JSON to SVGZ.
Convert JSON Format to SVGZ via Java
Conversion Requirements
You can easily use Aspose.Total for Java directly from a Maven based project and include libraries in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
// open JSON file using Workbook object | |
Workbook workbook = new Workbook("input.json"); | |
// save resultant file in JSON-TO-JPEG ormat | |
workbook.save("output.jpeg", SaveFormat.AUTO); | |
// load JPEG file | |
Image image = Image.Load("output.jpeg"); | |
// supports DICOM, JPEG2000, APNG, PSD, DXF, WMF, EMZ, WMZ, TGA, and SVGZ file formats | |
// save JPEG to PSD file format | |
image.save("output.psd", new PsdOptions()); |
Set Layout and Convert JSON Format to SVGZ via Java
Furthermore, the API allows you to parse JSON to SVGZ with specified layout options. In order to specify the layout options, you can use JsonLayoutOptions class. It allows you to process an array as a table, ignore nulls, ignore array title, ignore object title, convert string to number or date, set date and number format, and set title style. All of these options allow you to present your data as per your needs. The following code snippet shows you how to set the layout options.
// create a blank Workbook object | |
Workbook workbook = new Workbook("input.json"); | |
// access default empty worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// read JSON file | |
String jsonInput = new String(Files.readAllBytes("SampleJson.json")); | |
// set JsonLayoutOptions for formatting | |
JsonLayoutOptions layoutOptions = new JsonLayoutOptions(); | |
layoutOptions.setArrayAsTable(true); | |
layoutOptionssetConvertNumericOrDate(true); | |
layoutOptionssetIgnoreArrayTitle(true); | |
layoutOptionssetIgnoreNull(true); | |
layoutOptionssetIgnoreObjectTitle(true); | |
// import JSON data to default worksheet starting at cell A1 | |
JsonUtility.importData(jsonInput, worksheet.getCells(), 0, 0, layoutOptions); | |
// save resultant file in JSON-TO-JPEG ormat | |
workbook.save("output.jpeg", SaveFormat.AUTO); | |
// load JPEG file | |
Image image = Image.Load("output.jpeg"); | |
// supports DICOM, JPEG2000, APNG, PSD, DXF, WMF, EMZ, WMZ, TGA, and SVGZ file formats | |
// save JPEG to PSD file format | |
image.save("output.psd", new PsdOptions()); |
Convert JSON Format to SVGZ with Watermark via Java
Using the API, you can also convert JSON to SVGZ with watermark in your SVGZ document. In order to add a watermark to you can first convert JSON to JPEG and add a watermark in it. In order to add watermark, load an image file using the Image class, create an object of the Graphics class and initialize it with Image object, create a new Matrix object and set translation and transformation to the desired angle and add watermark using Graphics.drawString method. After adding the watermark in your image, you can save the JPEG as SVGZ format.
// open JSON file using Workbook object | |
Workbook workbook = new Workbook("input.json"); | |
// save resultant file in JSON-TO-JPEG ormat | |
workbook.save("output.jpeg", SaveFormat.AUTO); | |
// load JPEG | |
Image image = Image.load("output.jpeg"); | |
// create and initialize an instance of Graphics class | |
Graphics graphics= new Graphics(image); | |
// create an instance of Font | |
Font font = new Font("Times New Roman", 16, FontStyle.Bold); | |
// create an instance of SolidBrush and set its properties | |
SolidBrush brush = new SolidBrush(); | |
brush.setColor(Color.getBlack()); | |
brush.setOpacity(100); | |
Size sz = graphics.getImage().getSize(); | |
// create an object of Matrix class for transformation | |
Matrix matrix = new Matrix(); | |
// first a translation then a rotation | |
matrix.translate(sz.getWidth() / 2, sz.getHeight() / 2); | |
matrix.rotate(-45.0f); | |
// set the Transformation through Matrix | |
graphics.setTransform(matrix); | |
// draw a string using the SolidBrush and Font objects at specific point | |
graphics.drawString("Watermark by Aspose.Imaging for Java", font, brush, 0, 0); | |
// supports Dicom, Jpeg2000, Apng, Psd, Dxf, Wmf, Emz, Wmz, Tga, Svgz file formats | |
// save JPEG to PSD file format | |
image.save("output.psd", new PsdOptions()); |