Esempio n. 1
0
        public static void ConvertPDF2MultipageTiff()
        {
            //Copy "x86" and "x64" folders from download package to your .NET project Bin folder.
            PdfConverter document = new PdfConverter("sample.pdf");

            //Default is 72, the higher DPI, the bigger size out image will be
            document.DPI = 96;
            //Save pdf to multiple pages tiff to local file
            document.DocumentToMultiPageTiff("sample.tif");
            //Or save the multiple pages tiff in memory to other use
            //Image multipageTif = document.DocumentToMultiPageTiff();
        }
Esempio n. 2
0
        public static void ConvertPDF2MultipageTiff()
        {
            //Please repace the trial key from trial-license.txt in download package
            //This license registration line need to be at very beginning of our other code
            LicenseManager.SetKey("trial key");

            //Copy "x86" and "x64" folders from download package to your .NET project Bin folder.
            PdfConverter document = new PdfConverter("sample.pdf");

            //Default is 72, the higher DPI, the bigger size out image will be
            document.DPI = 96;
            //Save pdf to multiple pages tiff to local file
            document.DocumentToMultiPageTiff("sample.tif");
            //Or save the multiple pages tiff in memory to other use
            //Image multipageTif = document.DocumentToMultiPageTiff();
        }