Some test text!
Linux / Guides
This guide will help you run Apryse samples and integrate a free trial of the Apryse SDK into Python applications on Linux. Your free trial includes unlimited trial usage and support from solution engineers.
There are two ways to use Apryse with Python:
This guide will help you get started by building your own wrapper. You can find more information about using the precompiled library .
Make a directory to store the wrappers and navigate into that directory.
Clone the uncompiled PDFNet wrappers project by executing
git clone https://github.com/PDFTron/PDFNetWrappers
Navigate to PDFNetWrappers/PDFNetC
and download the PDFNet C/C++ SDK into that directory. Ensure you obtain the right architecture for your Python interpreter. For example, if your interpreter is 64bit (which this guide will assume), execute
wget http://www.pdftron.com/downloads/PDFNetC64.tar.gz
Unpack PDFNetC64.tar.gz
by tar xvzf PDFNetC64.tar.gz
, then execute
mv PDFNetC64/Headers/ .
and
mv PDFNetC64/Lib/ .
to move the PDFNet libraries in place.
You can delete PDFNetC64.tar.gz
to free up space.
Your /PDFNetC
folder should be laid out like this like this:
PDFNetC
├── Headers
├── Lib
├── PDFNetC64
└── README.txt
Make a build directory inside /PDFNetWrappers
and navigate to it. This guide will assume the build directory is called Build.
Execute
cmake -D BUILD_PDFNetPython=ON ..
If all goes well, you should get a message which reads:
Build files have been written to ~/PDFNetWrappers/Build
Execute make
followed by sudo make install
. You are now ready to run the samples or integrate Apryse SDK into your own application.
Running a specific sample
PYTHON
folder in the sample, for example /Samples/AddImageTest/PYTHON
and execute ./RunTest.sh
.Run all samples
/Samples
and execute
./runall_python.sh
The tests will run one by one./Samples/TestFiles/Output
This section will show you how to use our SDK to create a simple Apryse "Hello World!" application. It will create a document with one blank page and save it as a linearized PDF in its running directory.
Navigate to the /Samples
directory and create a new directory called myApp
(if it does not exist already). This guide will assume your application is named myApp. For organization, create a new directory inside myApp
called PYTHON
.
Navigate inside that PYTHON
directory and create a new Python file called myApp.py
. Open it with your favorite text editor and paste this into it:
import site
# below is the relative path to Apryse PDFNetC libraries
site.addsitedir("../../../PDFNetC/Lib")
import sys
from PDFNetPython import *
def main():
PDFNet.Initialize()
doc = PDFDoc()
page = doc.PageCreate() # Start a new page
doc.PagePushBack(page) # Add the page to the document
doc.Save("output.pdf", SDFDoc.e_linearized); # Save the document as a linearized PDF
print("Hello World!")
if __name__ == '__main__':
main()
Run your application via python myApp.py
. If all goes well your output should read:
PDFNet is running in demo mode.
Permission: write
Hello World!
Check the output.pdf
that the program output in the same directory. It should be a PDF with one blank page.
Check the troubleshooting page and our PDFNetWrappers github if you run into any issues going through this document.
Get the answers you need: Chat with us