Archive for October 25th, 2006

PDF2EXE(PDF to EXE)

PDF2EXE is a FREEWARE program to quickly convert PDF to EXE, making PDF readable on any computer without Adobe Reader or Adobe Acrobat software installed. The conversion from PDF to EXE preserves the look and feel of the original document.

  • Compress, encrypt PDF document
  • Set password for the converted EXE file
  • Disable conversion from PDF to TXT, EXE to TXT
  • Disable printing of PDF file
  • Launch slide show after initialization
  • Disable conversion from EXE to image formats
  • Disable document properties
  • Prevent generated EXE from modification

With PDF2EXE, you can distribute your Adobe PDF files to your customers, share PDF documents with your friends without worrying about whether they can read it or not. PDF2EXE users can have more control over PDF files.

No Distribution Royalties for the generated EXE files.

Download Now (1.56 MB)

Only support english?
EXE version PDF =A PDF in side Cool PDF Reader?
If a customer use Linux, how?

Share and Enjoy:
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • MisterWong
  • Wists
  • BlinkList
  • blogmarks
  • blogtercimlap
  • connotea
  • DotNetKicks
  • Fark
  • Fleck
  • Gwar
  • Haohao
  • IndianPad
  • Internetmedia
  • LinkaGoGo
  • MyShare
  • Netscape
  • NewsVine
  • Rec6
  • Reddit
  • Scoopeo
  • Slashdot
  • StumbleUpon
  • Technorati
  • Webride

Adobe Digital Editions:supports both PDF and XHTML-based content

Adobe Digital Editions is a completely new way to read and manage eBooks and other digital publications. Digital Editions is built from the ground up as a lightweight, rich Internet application (RIA). Digital Editions works online and offline, and supports both PDF and XHTML-based content.

The Digital Editions download is only 2.5 MB including Adobe Flash Player 9 and takes less than two minutes to install over a broadband connection. With an RIA service model, users always have the latest version of Digital Editions, taking advantage of new features and security enhancements.

We’re releasing an early Windows beta version now so that you have plenty of time to give us feedback on what’s working for you, and what isn’t. Get it now or browse and download eBooks and digital magazines in our free library. Make reading an experience.

Get Adobe Digital Editions
Visit the Adobe Digital Editions Library

Share and Enjoy:
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • MisterWong
  • Wists
  • BlinkList
  • blogmarks
  • blogtercimlap
  • connotea
  • DotNetKicks
  • Fark
  • Fleck
  • Gwar
  • Haohao
  • IndianPad
  • Internetmedia
  • LinkaGoGo
  • MyShare
  • Netscape
  • NewsVine
  • Rec6
  • Reddit
  • Scoopeo
  • Slashdot
  • StumbleUpon
  • Technorati
  • Webride

iTextSharp(iText#) example in asp.net

Just a example to show how to use iTextSharp in ASP.ET(no matter asp.net1.1 or asp.net2.0)

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;

namespace itext
{
    /**//// 
    ///
    /// 
    public class Chap0105 : System.Web.UI.Page
    {
        private void Page_Load(object sender, System.EventArgs e)
        {
            // step 1
            // need to write to memory first due to IE wanting
            // to know the length of the pdf beforehand
            MemoryStream m = new MemoryStream();
            Document document = new Document();
            try
            {
                // step 2: we set the ContentType and create an instance of the Writer
                Response.ContentType = "application/pdf";
                PdfWriter writer=PdfWriter.GetInstance(document, m);
                writer.CloseStream=false;

                // step 3
                document.Open();

                // step 4
                document.Add(new Paragraph(DateTime.Now.ToString()));
            }
            catch (DocumentException ex)
            {
                Console.Error.WriteLine(ex.StackTrace);
                Console.Error.WriteLine(ex.Message);
            }
            // step 5: Close document
            document.Close();

            // step 6: Write pdf bytes to outputstream
            Response.OutputStream.Write(m.GetBuffer(), 0, m.GetBuffer().Length);
            Response.OutputStream.Flush();
            Response.OutputStream.Close();
            m.Close();
        }

        override protected void OnInit(EventArgs e)
        {
            //
            //
            //
            InitializeComponent();
            base.OnInit(e);
        }

        /**//// 
        ///
        ///
        /// 
        private void InitializeComponent()
        {
            this.Load += new System.EventHandler(this.Page_Load);
        }
        #endregion
    }
}
Share and Enjoy:
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • MisterWong
  • Wists
  • BlinkList
  • blogmarks
  • blogtercimlap
  • connotea
  • DotNetKicks
  • Fark
  • Fleck
  • Gwar
  • Haohao
  • IndianPad
  • Internetmedia
  • LinkaGoGo
  • MyShare
  • Netscape
  • NewsVine
  • Rec6
  • Reddit
  • Scoopeo
  • Slashdot
  • StumbleUpon
  • Technorati
  • Webride