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

Master Google Ads: Top 10 PPC Strategies for 2025 Success

Overview As we step into 2025, mastering Google Ads PPC strategies is essential for businesses… Read More

2 days ago

How TF-IDF Impacts SEO?

Introduction to TF-IDF: A Beginner's Guide with Real-World Examples Search engines like Google aim to… Read More

4 days ago

How to Save $500 a Year with These Energy-Efficient Smart Devices

Introduction In today’s world, rising energy costs are a concern for many households. But what… Read More

6 days ago

The Best Productivity Apps for Entrepreneurs and Freelancers in 2025

Entrepreneurs and freelancers are often juggling multiple tasks, deadlines, and responsibilities, making productivity a critical… Read More

7 days ago

Master the Art of 360-Degree Marketing Campaigns for Guaranteed Success

In today’s competitive market, standing out requires more than just a strong message. A 360-degree… Read More

3 weeks ago

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

2 months ago

This website uses cookies.