Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

free alternative to iTextSharp [closed]

Tags:

c#

itextsharp

I have a project not open source and I need to use something like iTextSharp , because iTextSharp licence say it should only be used in open sources

any alternative please

like image 906
AMH Avatar asked Sep 15 '13 06:09

AMH


People also ask

What are the best alternatives to iText in 2022?

SourceForge ranks the best alternatives to iText in 2022. Compare features, ratings, user reviews, pricing, and more from iText competitors and alternatives in order to make an informed decision for your business. 1 Foxit PDF Editor Foxit Software

Can I use iTextSharp in an open source project?

I have a project not open source and I need to use something like iTextSharp , because iTextSharp licence say it should only be used in open sources Please provide more information on what your goal is and not just on what tool you need to replace. Yep, givers set limits, because takers rarely do.

Should I use iText 5 or iText 7?

We HIGHLY recommend customers use iText 7 for new projects, and to consider moving existing projects from iText 5 to iText 7 to benefit from the many improvements such as: Better language support: Indic, Thai, Khmer, Arabic, Hebrew. (Close-source addon) iText 5 consists of several jars. itext-xtra-x.y.z.jar: extra functionality (PDF 2!)

Can iTextSharp convert a Word document to a PDF?

It can convert Word documents to PDFs. The AGPL basically states that you can use iTextSharp if any user of your application can have access to the source code of both iTextSharp (along with the possible modifications you did on it) AND your application under the AGPL terms.


2 Answers

There are multiple options.


PDFSharp

You could try PDFsharp it has an MIT license which means according to what it says here you should be able to use in a commercial product.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.


FreeSpire.Doc

There's also FreeSpire.Doc (on NuGet), which is limited to 3 pages and 500 paragraphs. It can convert Word documents to PDFs.

like image 133
Ryan T. Grimm Avatar answered Oct 19 '22 13:10

Ryan T. Grimm


The AGPL basically states that you can use iTextSharp if any user of your application can have access to the source code of both iTextSharp (along with the possible modifications you did on it) AND your application under the AGPL terms. If you want to be released from these requirements, you have to pruchase a license from iText.

You'll find more information here.

If any doubt, don't hesitate to contact the sales department of iText.

So, in short Version 2 you can use without payment (standard library open source license). For version 5 you need to pay iText.

like image 38
edgarmtze Avatar answered Oct 19 '22 14:10

edgarmtze