Creating Flipbook

Once you have Flipbook plugin activated you can start creating flipbooks.

Step 1. Create a Flipbook Post

Click on the ‘Real3D Flipbook’ > ‘Add new

Step 2. Add images or PDF as source

Click on the Select PDF or images button

Select PDF form media library

or select images (multiple images can be selected at once)

and click Send to Flipbook.

Step 3. Publish Flipbook Post

Click on the Publish button to publish the flipbook post.

After the post has been published you can preview the flipbook, view the flipbook post (Permalink) or copy the Shortcode to embed the flipbook in a post or page.

PDF from another domain

For using PDF from another domain you need to enable CORS.

For Apache server, add following lines to .htaccess

Header set Access-Control-Allow-Origin "*" 
Header set Access-Control-Allow-Headers "Range" 
Header set Access-Control-Expose-Headers: "Accept-Ranges, Content-Encoding, Content-Length, Content-Range"

More info https://enable-cors.org/server.html

For Amazon S3 add following JSON configuration for the bucket

[
    {
        "AllowedHeaders": [],
        "AllowedMethods": [
            "GET"
        ],
        "AllowedOrigins": [
            "*"
        ],
        "ExposeHeaders": []
    }
]

More info here https://aws.amazon.com/premiumsupport/knowledge-center/s3-configure-cors/

Fast PDF loading

PDF flipbook supports partial PDF download (it can display pages before entire PDF is downloaded). For that feature to work server needs to support range requests.

Optimized PDF Flipbook with PDF Tools addon (for Real3D Flipbook PRO)

With PDF Tools addon, (requires Real3D Flipbook Pro), you can create fastest loading PDF flipbook by converting PDF to images and JSON on the server. This flipbook will load pages faster because it will not load JS files required to process the PDF and it will load images and JSON from the server instead of loading and processing the PDF at runtime.

Flipbook created with PDF tools will still have PDF links, search and text selection working.

After you have created flipbook from PDF with PDF Tools, you can delete PDF from the server, which is the only real protection for your original PDF file.

Get PDF Tools for Real3D Flipbook Addon

Last updated