Categories: How to

Create PDF or JPG File in Adobe Air Using ActionScript 3 and AlivePDF Library

We can use purePDF or AlivePDF ActionScript 3 libraries for creating PDF from Adobe Air.

This example code showing how to saved and stored a .JPG file on the device. this way you may save .PDF file also. I will show full PDF example here.

f = File.documentsDirectory.resolvePath(fil_name+".jpg");      
stream = new FileStream();
stream.open(f, FileMode.WRITE);                                         
i = new JPGEncoder(80);     
bytes = new ByteArray();
bytes = i.encode(snapShot.bitmapData);
stream.writeBytes(bytes, 0, bytes.bytesAvailable);
stream.close();

Comments

comments

Shayed

Share
Published by
Shayed

Recent Posts

Step-by-Step Guide to Setting Up a Secure Private Cloud Server for Your Startup

If you’re ready to take control of your organization’s data by setting up a private… Read More

1 day ago

Step-by-Step Guide to Setting Up a Secure Private Cloud Server for Your Organization.

Building a private cloud involves creating a virtualized environment where you can manage, store, and… Read More

1 day ago

Flex AI: The Future of Flexible Artificial Intelligence

In the rapidly evolving landscape of artificial intelligence, Flex AI stands as a transformative force,… Read More

1 month ago

iPhone 16 Pro and Pro Max: A Comprehensive Overview of Apple’s Latest Flagships

Apple is set to once again make waves in the smartphone market with the iPhone… Read More

1 month ago

How to Save a Water Damaged iPhone

Act quickly! The sooner you take action, the better your chances of saving your water… Read More

3 months ago

Exciting Innovations in Electric Vehicles for 2024

Introduction The electric vehicle (EV) market continues to grow rapidly, driven by technological advancements and… Read More

5 months ago

This website uses cookies.