Convert JSON to PDF

Hi ,
i would like to convert JSON format data to PDF, do we have an Aspose product to achieve this requirement , please post the code snippet.

Thanks,

@mahesh.indalkar,

You may use Aspose APIs (e.g., Aspose.Cells or Aspose.PDF) to convert JSON data to PDF. For example, there are two ways (you may choose one) to accomplish the task via Aspose.Cells for .NET.

  1. Aspose.Cells supports to load/read JSON data, so you may simply load the JSON file and convert to PDF. See the document on how to convert JSON to PDF in C#.
  2. Aspose.Cells provides a JsonUtility class for processing JSON. JsonUtility class has an ImportData method for importing JSON data. Aspose.Cells also provides a JsonLayoutOptions class that represents the options of JSON layout. See the document on how to import data to PDF from JSON for your reference. Also, see the document for your further reference.

Hope, this helps a bit.