Spire.PDF is a professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies. Get free and professional technical support for Spire.PDF for .NET, Java, Android, C++, Python.

Tue Aug 22, 2017 8:08 pm

I've recently installed the community edition and would like to re-distribute the libraries as part of an application commercially with the limits of this edition. The license.rtf file (C:\Program Files (x86)\e-iceblue\Spire.pdf-fe) does not mention usage or distribution rights or limitations for the community edition. Is there a document that describes the community edition? My concern is that the license that is installed is for each of the other license types and does not mention the community edition at all.

brentm
 
Posts: 1
Joined: Tue Aug 22, 2017 7:25 pm

Wed Aug 23, 2017 6:22 am

Hello,

Thanks for your inquiry.
Actually, we have mentioned the limitation of the free version on the free product introduction page.
Below is the link for the free Spire.Pdf, in that page, you will see "Friendly Reminder:", that is the limiation details.
https://www.e-iceblue.com/Introduce/free-pdf-component.html#.WZ0VBnS-sl0

Sincerely,
Jane
E-iceblue support team
User avatar

Jane.Bai
 
Posts: 1156
Joined: Tue Nov 29, 2016 1:47 am

Tue Aug 29, 2017 5:37 pm

I understand that Ms. Jane from the E-iceblue Support Team says that in addition to the built-in 10-page limit, there are no licensing requirements for distributing software using the community library. In particular paragraph 3C of the EULA does not apply.

Regards,
Robert

micorba
 
Posts: 2
Joined: Wed Mar 15, 2017 11:17 am

Wed Aug 30, 2017 1:53 am

Hello Robert,

Thanks for the post.
Yes, you can use free version for commercial use and there's no any limitation on the application of free version.
If there's still any doubt, please feel free to contact us.

Sincerely,
Jane
E-iceblue support team
User avatar

Jane.Bai
 
Posts: 1156
Joined: Tue Nov 29, 2016 1:47 am

Wed Aug 30, 2017 6:40 am

Hello Jane,

Thank You for this information.

Robert

micorba
 
Posts: 2
Joined: Wed Mar 15, 2017 11:17 am

Wed Aug 30, 2017 6:49 am

Hi Robert,

Welcome to evaluate our product.
Please do not hesitate to post here if you need any help.

Sincerely,
Jane
E-iceblue support team
User avatar

Jane.Bai
 
Posts: 1156
Joined: Tue Nov 29, 2016 1:47 am

Wed Jun 05, 2019 4:57 am

Can we manage annotations using the free version of Spire.PDF ??

Regards
Pardeep Bhardwaj

pb_10
 
Posts: 1
Joined: Wed Jun 05, 2019 4:49 am

Wed Jun 05, 2019 7:37 am

Hello pb_10,

Thanks for your inquiry.
Sure, our Free Spire.PDF for .NET Version:5.4 supports managing annotations. But it is limited to 10 pages of PDF during loading and creating files, and when converting PDF to image, only the first 3 pages of PDF files will be converted successfully. If there is any doubt, welcome to write back.

Sincerely,
Lisa
E-iceblue support team
User avatar

Lisa.Li
 
Posts: 1261
Joined: Wed Apr 25, 2018 3:20 am

Tue Jun 11, 2019 2:24 am

Hello pb_10,

Greetings from E-iceblue.
Did my free version work for you? Thanks in advance for your valuable feedback and time.

Sincerely,
Lisa
E-iceblue support team
User avatar

Lisa.Li
 
Posts: 1261
Joined: Wed Apr 25, 2018 3:20 am

Sat Mar 20, 2021 3:09 pm

Hello Team,

I want to try freeSpire.PDF in one of my project but not sure I should use or not.
Is it fine to use free version?
Do I need to pay anything for freeSpire.PDF ?
Will I face any consciousness while using freespire pdf for local machine or commercial ?

Can you please assist me on above queries?

Regards,
Rohit Khapekar

khapekar.rohit
 
Posts: 3
Joined: Sat Mar 20, 2021 4:50 am

Mon Mar 22, 2021 2:10 am

Hello Rohit,

Thank you for your interests in our products.
Our Free Spire.PDF is totally free without any warning message for your commercial and personal use. Just go ahead!

Besides, kindly note that free version is limited to 10 pages of PDF. This limitation is enforced during loading and creating files. When converting PDF to Image, the first 3 pages of PDF files will be converted to Image format successfully.

If your requirements exceed the limitation, please use our Commercial Edition of Spire.PDF.

Sincerely,
Brian
E-iceblue support team
User avatar

Brian.Li
 
Posts: 1271
Joined: Mon Oct 19, 2020 3:04 am

Wed Mar 24, 2021 6:18 am

Hi Team,

I want to get current page number or page label which is already open or visible.
I didn't find a solution for this.
Can you please help me?

Thanks & regards,
Rohit Khapekar

khapekar.rohit
 
Posts: 3
Joined: Sat Mar 20, 2021 4:50 am

Wed Mar 24, 2021 6:20 am

Hi Team,

I want to get current page number or page label which is already open or visible.
I didn't find a solution for this.
Can you please help me?

Thanks & regards,
Rohit Khapekar

khapekar.rohit
 
Posts: 3
Joined: Sat Mar 20, 2021 4:50 am

Wed Mar 24, 2021 8:19 am

Hello Rohit,

Thanks for your inquiry.
Please refer to the following code to get the page number and the page label.
Code: Select all
            PdfDocument pdf = new PdfDocument();
            pdf.LoadFromFile(@"Sample.pdf");

            int startpage = 5;
            int currentpage;
            string pageLabel;
            for (int i = 0; i<pdf.Pages.Count;i++)
            {
                currentpage = startpage + i;
                pageLabel = pdf.Pages[i].PageLabel;
            }


If this is not what you want, please describe your requirement in detail. Thanks in advance.

Sincerely,
Brian
E-iceblue support team
User avatar

Brian.Li
 
Posts: 1271
Joined: Mon Oct 19, 2020 3:04 am

Wed Mar 31, 2021 9:50 am

Hello,

Greetings from E-iceblue!
Did the code we provided work for you? Any feedback will be greatly appreciated.

Sincerely,
Brian
E-iceblue support team
User avatar

Brian.Li
 
Posts: 1271
Joined: Mon Oct 19, 2020 3:04 am

Return to Spire.PDF

cron