Skip to content

Instantly share code, notes, and snippets.

Convert PDF to XLSX with NET REST API. For more details: https://kb.aspose.cloud/pdf/net/convert-pdf-to-xlsx-with-net-rest-api/
using System;
using System.IO;
using Aspose.Pdf.Cloud.Sdk.Api;
namespace Aspose.PDF.Cloud.Examples.Kb
{
public class PdfToXlsx
{
public static void ConvertPdfToXlsx()
{
try
{
string Client_ID = "your client id";
string Client_Secret = "your client secret";
PdfApi pdfApi = new PdfApi(Client_Secret, Client_ID);
string localPath = @"C:\PDF\";
string srcFileName = "Sample.pdf";
string outputFile = "PDFtoXls.xlsx";
// Upload source file to the cloud storage
pdfApi.UploadFile(srcFileName, File.Open(localPath + srcFileName, FileMode.Open));
pdfApi.PutPdfInStorageToXlsx(srcFileName, outputFile);
// Download the output file from Cloud Storage
var stream = pdfApi.DownloadFile(outputFile, null, null);
using (var fileStream = File.Create(localPath + outputFile))
{
stream.Seek(0, SeekOrigin.Begin);
stream.CopyTo(fileStream);
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment