Convert JSON Format to SVGZ via Java

Java API to parse JSON format to SVGZ within any Java J2SE, J2EE, J2ME applications

JSON Conversion via C# .NET

 

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

  1. Create a new Workbook object and open JSON file
  2. Save JSON as JPEG using save method
  3. Load JPEG document by using Image class
  4. Save the document to SVGZ format using save method

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());

Explore JSON Conversion Options with Java

Convert JSON to APNG (Animated Portable Network Graphics)
Convert JSON to CHM (Compiled HTML Help File)
Convert JSON to DICOM (Digital Imaging and Communications in Medicine)
Convert JSON to DOC (Microsoft Word Binary Format)
Convert JSON to DOCM (Microsoft Word 2007 Marco File)
Convert JSON to DOT (Microsoft Word Template Files)
Convert JSON to DOTX (Microsoft Word Template File)
Convert JSON to DXF (Autodesk Drawing Exchange Format)
Convert JSON to EMZ (Windows Compressed Enhanced Metafile)
Convert JSON to EPUB (Open eBook File)
Convert JSON to FLATOPC (Microsoft Word 2003 WordprocessingML)
Convert JSON to JPEG2000 (J2K Image Format)
Convert JSON to MOBI (Open Ebook Format)
Convert JSON to ODP (OpenDocument Presentation Format)
Convert JSON to ODT (OpenDocument Text File Format)
Convert JSON to OTP (OpenDocument Standard Format)
Convert JSON to OTT (OpenDocument Template)
Convert JSON to PCL (Printer Command Language)
Convert JSON to POT (Microsoft PowerPoint Template Files)
Convert JSON to POTM (Microsoft PowerPoint Template File)
Convert JSON to POTX (Microsoft PowerPoint Template Presentation)
Convert JSON to POWERPOINT (Presentation Files)
Convert JSON to PPS (PowerPoint Slide Show)
Convert JSON to PPSM (Macro-enabled Slide Show)
Convert JSON to PPSX (PowerPoint Slide Show)
Convert JSON to PPT (PowerPoint Presentation)
Convert JSON to PPTM (Macro-enabled Presentation File)
Convert JSON to PS (PostScript File)
Convert JSON to PSD (Photoshop Document)
Convert JSON to RTF (Rich Text Format)
Convert JSON to TGA (Truevision Graphics Adapter)
Convert JSON to WMF (Windows Metafile)
Convert JSON to WMZ (Compressed Windows Metafile)
Convert JSON to WORD (WordProcessing File Formats)
Convert JSON to WORDML (Microsoft Word 2003 WordprocessingML)
Convert JSON to JPEG2000 (J2K Image Format)