Пример #1
0
        public void ConvertToPdf(string imageFilePath, string pdfFilePath)
        {
            if (string.IsNullOrEmpty(imageFilePath))
            {
                throw new ArgumentNullException();
            }
            if (string.IsNullOrEmpty(pdfFilePath))
            {
                throw new ArgumentNullException();
            }

            FileInfo fileInfo = new FileInfo(imageFilePath);
            string   fileType = fileInfo.Extension.Trim();

            if (!(fileType.Equals(".jpg") || fileType.Equals(".png") || fileType.Equals(".ico")))
            {
                throw new InvalidDataException();
            }

            ToPdf convertToPdf = new ToPdf();

            convertToPdf.ConvertImageToPdf(imageFilePath, pdfFilePath);
        }
        public void ConvertToPdf(string imageFilePath, string pdfFilePath)
        {
            ToPdf convertToPdf = new ToPdf();

            convertToPdf.ConvertImageToPdf(imageFilePath, pdfFilePath);
        }