2

我想创建一个 WCF 服务(像 Windows 服务一样工作)。该服务将从特定路径读取 PDF 文件、提取页面、创建新 PDF 文件并将其返回给调用者。

我怎样才能做到这一点 ?我使用 QuickPDF 处理 PDF 文件,我可以提取和创建新的 PDF 文件。如何在 WCF 服务中使用它?

等待您的帮助...

这只是示例代码:

public Stream ExtractPdf(string PathOfOriginalPdfFile, int StartPage,int PageCount)
{
        PDFLibrary qp = new PDFLibrary();
        Stream Stream_ = null;

        if (qp.UnlockKey(".................") == 0)
        {
            string fileName = @"..\..\Test Files\sample1.pdf";
            string OutputFile = @"..\..\Test Files\sample1_extracted.pdf";

            if (qp.Unlocked() == 1)
            {

                int docID = qp.LoadFromFile(fileName, "");

                int extractPageSuccess = qp.ExtractPages(StartPage, PageCount);

                if (extractPageSuccess == 0)
                {
                    // error
                }
                else
                {
                    qp.SaveToFile(OutputFile);
                }
            }
        }

        //
        // Codes here
        //
        return Stream_;
    }

我编辑了它:

 public byte[] ExtractPdf(string PathOfOriginalPdfFile, int StartPage,int PageCount)
    {

        QuickPDFDLL0815.PDFLibrary qp = new QuickPDFDLL0815.PDFLibrary(@"C:\Program Files (x86)\Quick PDF Library\DLL\QuickPDFDLL0815.dll");

        string fileName = @"..\..\Test Files\sample1.pdf";
        byte[] binFile = null;

        if (qp.UnlockKey("...................") == 0)
        {


            if (qp.Unlocked() == 1)
            {

                int docID = qp.LoadFromFile(fileName, "");

                int extractPageSuccess = qp.ExtractPages(StartPage, PageCount);

                if (extractPageSuccess == 0)
                {
                    // error
                }
                else
                {
                   binFile = qp.SaveToString();
                }
            }
        }

        return binFile;
    }
4

1 回答 1

3

您可以将文件作为 发送Stream,请参阅How to: Enable Streaming,然后在客户端上保存文件并让 shell 执行它。MSDN 文章包括一个示例GetStream方法以及关于Writing a custom stream.

如果您想要更完整的示例代码,论坛帖子使用 WCF 进行流式文件传输以一些开头,但是请注意,作者将其发布在那里是因为他们在运行它时遇到了问题。

至于 byte[] 或流,请参阅Uploading Image Blobs–Stream vs Byte ArrayStream vs Raw Bytes。第二种状态

流对于大文件的性能会更好,因为并非所有文件都需要一次读入内存

于 2012-05-04T12:33:37.587 回答