Some test text!
UWP / Guides / Stream PDF
Online PDFs can be viewed the same way as one can stream an online video. For example, you can see the beginning of the content almost immediately, and if you move to the middle of the content, it is prioritized and loaded very quickly, before other parts. Showing partial PDF content while downloading on demand provides fast and responsive PDF viewing experience. While most viewers require the entire file to be downloaded before it can be opened and viewed, with Apryse technology, viewing partial content for online PDF is made simple.
Due to the variety of PDF files and their hosting source, not every PDF can be viewed before the entire file is downloaded. To make this happen, the following are required:
OpenUrlAsync
method.A linearized document has two important properties:
Apryse SDK can linearize new and and existing PDF documents when they are saved. Once you have a PDFDoc
object (by either opening an existing PDF or creating a new one), it can be saved with the e_linearized
flag, for example:
PDFDoc pdfdoc = new PDFDoc("in.pdf");
pdfdoc.SaveAsync("out.pdf", pdftron.SDF.SDFDocSaveOptions.e_linearized);
Another potential option is to use Acrobat to save a document for "Fast Web View", which will also linearize a document.
Secondly, a web server that supports byte-range requests is required. A byte-range request asks the server to send a certain set of bytes from a file that don't necessarily start from byte zero or comprise the entire file. For example if the HTTP GET headers include the following key value pair
Range: bytes=1495454-1594723
~97 KB will be sent from the requested file by a byte-range supporting server, starting at byte 1495454.
To test whether your webserver supports this feature, use cURL on your favourite *nix system (or using the native Windows version) as follows:
curl -H Range:bytes=16- -I https://www.pdftron.com
If the server responds with
HTTP/1.1 206 Partial Content
then it supports byte ranges. (If it responds with “HTTP/1.1 200 OK”, then it does not support byte ranges.)
A couple of small notes:
With a linearized PDF and a webserver that supports byte-range requests, use the following to view the online PDF:
Using PDFViewCtrl :
await _PDFViewCtrl.OpenURLAsync("http://example.com/sample.pdf");
And that is it! You will see the document starts to show up shortly after.
By default, the file will be downloaded continuously until the entire file finishes downloading. However, if you are concerned about data usage, it is possible to only download parts of the PDF document that is currently on-screen. Everything that is off-screen is not downloaded to keep minimum data usage.
HTTPRequestOptions httpRequestOptions = new HTTPRequestOptions();
httpRequestOptions.RestrictDownloadUsage(true);
await _PDFViewCtrl.OpenURLAsync(url);
As more and more data heads to the cloud, it's important that information that is stored remotely can be accessed in a fast, responsive manner. Using linearized PDF documents with PDFNet's OpenURL method is a way to deliver a top-notch remote PDF viewing experience.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales