Aspose.Pdf .Net Question

Hello,

I’m a developer and I need the PDF library for .Net but I have few question:

If i buy Developer License:

- 1- I am working on TFS, can I use this library if I want put my code on TFS ?

- 2- Aspose convert PDF to word properly, does it convert PDF to Excel or not ?
I have tried this code but its not working:

' Load PDF document

Dim doc As Aspose.Pdf.Document = New Aspose.Pdf.Document(pu & _

FileUpload1.FileName)

' Instantiate ExcelSave Option object


'Dim excelsave As ExcelSaveOptions = New ExcelSaveOptions()


' Save the output in XLS format

doc.Save(dest + FileUpload1.FileName + ".xls", excelsave)

Response.Redirect("Successful_Convert_to_Excel.aspx?query2=" + FileUpload1.FileName)


- 3- Does it support Arabic language in converting from PDF to Word and Excel ?

Please Reply, it’s urgent.

dany alabsi:
- 1- I am working on TFS, can I
use this library if I want put my code on TFS ?
Hi Dany,

Thanks for contacting support.

Aspose.Pdf can be used in any application based on .NET Framework and if your application is stored over TFS, you can use our API there.

<o:p></o:p>

-

dany alabsi:
2- Aspose convert PDF to word properly, does it convert PDF to Excel or not ?
The PDF to Excel conversion is supported by our API and in case you are facing any issue, please share your input/resource PDF file. Convert PDF to Excel Workbook


-

dany alabsi:
3- Does it support Arabic language in converting from PDF to Word and Excel ?
Yes it honors English as well as Non-English language during conversion and in case you face any issue, please share your resource files.

Thank you.


- so if there is one developer in a company, which license do you recommend to buy ?

- the license is it for lifetime ?
or each year i have to pay again ?

- i wrote the same code for converting to excel that you gave me but when its converting the excel sheet is blank.
plz advise.

dany alabsi:
- so if there is one developer in a company, which license do you recommend to buy ?
Hi Dany,


I have contacted our sales team and they will be sharing the required information, shortly.

dany alabsi:
- the license is it for lifetime ?
or each year i have to pay again ?
A license is valid for one year and you can use all new API versions published before license expiry date. Furthermore, you can use a license for as long as you want with the API version which fulfills your requirement.

dany alabsi:
- i wrote the same code for converting to excel that you gave me but when its converting the excel sheet is blank.
As requested earlier, please share the resource/input PDF file so that we can test the scenario in our environment.

Just to clarify:

so I can use my license that I purchase for ever, right ?
after one year I will be not able to use the new versions but old versions I can.

actually the file is an invoice for a customer and I can’t share it.

Hi Dany,


dany alabsi:
- so if there is one developer in a company, which license do you recommend to buy ?

You would need a Developer OEM license.

The license is perpetual and you can use it forever. If you decide not to renew the maintenance subscription after the first year you can continue to use the license but would not have access to any new versions or fixes published for your API after the expiration date.

Please let us know if there is any other way that we can help.

Best regards,

Shelia
dany alabsi:
Just to clarify:

so I can use my license that I purchase for ever, right ?
after one year I will be not able to use the new versions but old versions I can.

actually the file is an invoice for a customer and I can’t share it.

Hi Dany,

Yes you are correct. Once you have purchased a license, you can use it for as long as you want and also you can use updated API versions published before license expiry date, for as long as you want.

Dears,



as messages earlier, here is a file to test it.

kindly convert the attached file to Excel and Word.



looking forward to your update.

Hi Dany,


Thanks for sharing the resource file.

I have tested the scenario using Aspose.Pdf for .NET 10.3.0 and have observed that PDF file is properly being converted to Excel and MS Word format. For your reference, I have also attached the files generated over my end.

[C#]

Document pdfdocument = new Document(“c:/pdftest/GI920319.pdf”);<o:p></o:p>

pdfdocument.Save(“c:/pdftest/GI920319_output.docx”, SaveFormat.DocX);



[C#]

//
load input PDF file
<o:p></o:p>

Document pdfdocument = new Document("c:/pdftest/GI920319.pdf");

// save output in MS Excel format

pdfdocument.Save(“c:/pdftest/GI920319_output.xml”, SaveFormat.Excel);

Thank you dear,

but the attached files are MS Word and XML.
please I need an excel file.

kindly test it and send it back.

Hi Dany,


The PDF to Excel conversion is saved with .XML extension and you can open it in MS Excel. When saving the output in .XLS format, you will get a message when viewing the file in MS Excel. Therefore in order to suppress the message, we suggest you to please try using .XML as extension.