我可以在我的 Android 项目中使用 iText 库吗?
Can I use the iText library in my Android project?
我需要将图像转换为 PDF 文档,我有 15 个 SDK(如果我有 19 个 SDK,我使用 PdfDocument)。我为我的任务找到了很好的图书馆,它是 iText。我将其库添加到我的项目中:
compile 'com.itextpdf:itext-pdfa:5.5.8'
但是后来我找到了一些关于许可证的信息,现在我不明白我是否可以在我的项目中使用这个库?如果没有,请告诉我转换 PDF 的免费库是什么。
iText is licensed as AGPL software.
AGPL is a free / open source software license.
This doesn't mean the software is gratis!
Buying a license is mandatory as soon as you develop commercial activities distributing the iText software inside your product or deploying it on a network without disclosing the source code of your own applications under the AGPL license. These activities include:
offering paid services to customers as an ASP
serving PDFs on the fly in the cloud or in a web application
shipping iText with a closed source product
如果你是用来学习的,可以用,没问题。但是,如果您的应用程序有商业计划,则不能在没有许可的情况下使用此库。
看看these。
我需要将图像转换为 PDF 文档,我有 15 个 SDK(如果我有 19 个 SDK,我使用 PdfDocument)。我为我的任务找到了很好的图书馆,它是 iText。我将其库添加到我的项目中:
compile 'com.itextpdf:itext-pdfa:5.5.8'
但是后来我找到了一些关于许可证的信息,现在我不明白我是否可以在我的项目中使用这个库?如果没有,请告诉我转换 PDF 的免费库是什么。
iText is licensed as AGPL software.
AGPL is a free / open source software license.
This doesn't mean the software is gratis!
Buying a license is mandatory as soon as you develop commercial activities distributing the iText software inside your product or deploying it on a network without disclosing the source code of your own applications under the AGPL license. These activities include:
offering paid services to customers as an ASP serving PDFs on the fly in the cloud or in a web application shipping iText with a closed source product
如果你是用来学习的,可以用,没问题。但是,如果您的应用程序有商业计划,则不能在没有许可的情况下使用此库。
看看these。