- Posts: 8
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Questions about Android development and PDF
Making PDF and MERGE
9 years 2 months ago #11601
by 부길김
Making PDF and MERGE was created by 부길김
i found a method of merging two pdf.
( www.radaeepdf.com/support/knowledge-base?view=kb&kbartid=67 )
However, I want to take a few pages from one pdf file to make a new pdf.
is it possible?
and another question:
1. make a 2 pdf (blank PDFDocument class and PDFDocument Class loaded with real PDF file)
2. and Add PDFDocument Class loaded with real PDF file to Blank PDFDocument class
is it possible way?
( www.radaeepdf.com/support/knowledge-base?view=kb&kbartid=67 )
However, I want to take a few pages from one pdf file to make a new pdf.
is it possible?
and another question:
1. make a 2 pdf (blank PDFDocument class and PDFDocument Class loaded with real PDF file)
2. and Add PDFDocument Class loaded with real PDF file to Blank PDFDocument class
is it possible way?
9 years 2 months ago #11603
by nermeen
Replied by nermeen on topic Making PDF and MERGE
The article example is for windows version, for Android you can check PDFTestAct in RDPDFReader module.
Yes:
All your requests can be achieved by manipulating the part that opens and loops over the documents.
Yes:
- it's possible to take a few pages from one pdf file to make a new pdf.
- it's possible to make a 2 pdf (blank PDFDocument class and PDFDocument Class loaded with real PDF file).
- it's possible to Add PDFDocument Class loaded with real PDF file to Blank PDFDocument class
All your requests can be achieved by manipulating the part that opens and loops over the documents.
9 years 2 months ago #11604
by 부길김
Replied by 부길김 on topic Making PDF and MERGE
you mean i have to see PDFTestAct.java ? is that all?
and m_doc.ImportPage() and RemovePage() is only operate when buy premium license. but i have to test before buy it.
Is there any way?
and m_doc.ImportPage() and RemovePage() is only operate when buy premium license. but i have to test before buy it.
Is there any way?
9 years 2 months ago #11605
by nermeen
Replied by nermeen on topic Making PDF and MERGE
I was indicating PDFTestAct.java because your post is under Android development and the article referes to Windows development.
For Android, PDFTestAct.java has an example of concatinating pdfs (concat_pdf()).
Yes, these features require the premium license, but you can test them using either the demo project (which is activated with a premium license) or your project but you need to give it the demo project's package name..
For details, check www.radaeepdf.com/support/knowledge-base...=component&kbartid=4
For Android, PDFTestAct.java has an example of concatinating pdfs (concat_pdf()).
Yes, these features require the premium license, but you can test them using either the demo project (which is activated with a premium license) or your project but you need to give it the demo project's package name..
For details, check www.radaeepdf.com/support/knowledge-base...=component&kbartid=4
9 years 2 months ago #11606
by 부길김
Replied by 부길김 on topic Making PDF and MERGE
in my project looks likt it.
public class Global
{
public static int mLicenseType = 2;
public static String mCompany = "radaee";
public static String mEmail = "[email protected]";
public static String mKey = "LNJFDN-C89QFX-9ZOU9E-OQ31K2-FADG6Z-XEBCAO";
public static void Init(Activity act)
{
//second para is license type
// 0 means standard license.
// 1 means professional license
// 2 means premium license
//3rd para is company name string(not package name)
//4th para is mail
//5th para is key string
//the package name got by native C/C++ library, not by pass parameter.
Init( act, mLicenseType, mCompany, mEmail, mKey);
}
is this possilble to test premiem license function?
public class Global
{
public static int mLicenseType = 2;
public static String mCompany = "radaee";
public static String mEmail = "[email protected]";
public static String mKey = "LNJFDN-C89QFX-9ZOU9E-OQ31K2-FADG6Z-XEBCAO";
public static void Init(Activity act)
{
//second para is license type
// 0 means standard license.
// 1 means professional license
// 2 means premium license
//3rd para is company name string(not package name)
//4th para is mail
//5th para is key string
//the package name got by native C/C++ library, not by pass parameter.
Init( act, mLicenseType, mCompany, mEmail, mKey);
}
is this possilble to test premiem license function?
Time to create page: 0.428 seconds