Click here to Skip to main content
15,893,594 members
Articles / Programming Languages / XML

Generate PDF Using C#

Rate me:
Please Sign up or sign in to vote.
4.75/5 (41 votes)
1 Feb 2009CPOL9 min read 546.5K   11K   262  
Using OpenOffice to convert different document types to PDF.
using System;
using OpenOfficeService.Objects;
using System.Runtime.Remoting.Channels.Tcp;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting;
using OpenOfficeWrapper;

namespace OpenOfficeService
{
    /// <summary>
    /// Class that is registred for Remoting usage and serves as a proxy
    /// between applications and ConvertToPDF class
    /// </summary>
    public class Receiver : MarshalByRefObject, IReceiver
    {
        public static string ReceiverName
        {
            get { return "OpenOfficeServiceReceiver"; }
        }

        private static object _initLock = new object();
        private static bool initialied = false;
        public static void Init()
        {
            lock (_initLock)
            {
                if (!initialied)
                {
                    TcpServerChannel serverChannel = new TcpServerChannel(
                        "tcpOpenOfficeServiceServerChannel", Properties.Settings.Default.Port);
                    ChannelServices.RegisterChannel(serverChannel, false);

                    RemotingConfiguration.RegisterWellKnownServiceType
                        (typeof(Receiver), ReceiverName, WellKnownObjectMode.Singleton);

                    RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;

                    initialied = true;
                }
            }
        }

        #region IReceiver Members

        public byte[] ConvertToPDF(byte[] wordMl)
        {
            return ConversionToPDF.Generate(wordMl);
        }

        public byte[] ConvertToPDF(string source)
        {
            return ConversionToPDF.Generate(source);
        }

        public string ConvertToPDF(string source, string destination)
        {
            return ConversionToPDF.Generate(source, destination);
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
United States United States
If you liked this article, consider reading other articles by me. For republishing article on other websites, please contact me by leaving a comment.

Comments and Discussions