4

我的代码在这里有效,但需要几秒钟的时间,而对于更大的文件,它需要更长的时间,我想知道是否有人可以查看我拥有的内容并提出任何有助于加快速度的改进。

目的:

这是扫描pdf文件并搜索QR码的位图图像,它将返回它的代码(解码)

private void ScanQRPdf(string imagePath)
    {
        foreach (var item in Directory.GetFiles(imagePath))
        {
            if (Path.GetExtension(item).ToLower() == ".png")
            {
                Bitmap b = new Bitmap(imagePath);
                try
                {
                    QRCodeDecoder decoder = new QRCodeDecoder();
                    String decodedString = decoder.decode(new QRCodeBitmapImage(b));
                    rtbpdfData.Text += decodedString + "\n";
                }
                catch (Exception ex)
                {
                }
            }
        }
    }

 static void AddQRTag(PdfSharp.Drawing.XGraphics gfx, int xPosition, int yPosition, string QRdata, string HRdata)
    {
        gfx.DrawRectangle(XBrushes.White, xPosition, yPosition, xPosition + 55, yPosition + 85);

        PdfSharp.Drawing.XImage xImage =
            PdfSharp.Drawing.XImage.FromGdiPlusImage(BuildQR(QRdata.ToUpper(), 3,
                                            QRCodeEncoder.ENCODE_MODE.ALPHA_NUMERIC, 2, QRCodeEncoder.ERROR_CORRECTION.M));
        gfx.DrawImage(xImage, xPosition + 5, yPosition + 5, xImage.PixelWidth * .8, xImage.PixelWidth * .8);


        XFont font = new XFont("OCR B", 6);
        XTextFormatter tf = new XTextFormatter(gfx);
        tf.Alignment = XParagraphAlignment.Left;


        XRect layout = new XRect(xPosition + 5, yPosition + 55, 55, 30);
        tf.DrawString(HRdata.ToUpper(), font, XBrushes.Black, layout, XStringFormats.TopLeft);
    }
4

4 回答 4

3

在代码中,您过去的一切都可以。问题一定出在 QRCodeDecoder.decode 函数中。如果您通过 Bitmap.GetPixel 函数逐像素扫描图像,则会浪费大量时间。更好的方法是使用不安全的代码并将位图转换为 BitmapData。

于 2013-02-28T14:28:52.693 回答
2

有几件事要尝试:

  1. 按照 Carra 的建议,按扩展名过滤文件
  2. 仅声明和实例化QRCodeDecoder一次
  3. 使用附加文本StringBuilder并仅分配一次

它会是这样的:

private void ScanQRPdf(string imagePath)
{
    var files = Directory.GetFiles ( path, "*.png", SearchOption.AllDirectories );

    QRCodeDecoder decoder = new QRCodeDecoder();

    StringBuilder sb = new StringBuilder();

    foreach (var item in files)
    {

            Bitmap b = new Bitmap(imagePath);
            try
            {
                String decodedString = decoder.decode(new QRCodeBitmapImage(b));

                sb.AppendLine(decodedString);
            }
            catch (Exception ex)
            {
            }

    }

    rtbpdfData.Text = sb.ToString();
}

但我真的不认为它会解决你的问题,这都是一些小的改进,你的延迟必须在QRCodeDecoderandQRCodeBitmapImage类中的某个地方,特别是在decode方法中,你应该尝试更好地理解它们,并找出它在内部做什么,这样你可以改进你的代码。

于 2013-02-28T14:25:00.980 回答
2

根据您的评论,如果您只需要处理图像的左上角,您可以使用Bitmap.Clone.

在这种情况下,我会将您的代码重构为以下内容:

private void ScanQRPdf(string imagePath)
{
    foreach (var decodedString in DecodeAllImagesInFolder(imagePath))
    {
        rtbpdfData.Text += decodedString + "\n";
    }
}

private static IEnumerable<string> DecodeAllImagesInFolder(string imagePath)
{
    foreach (var item in Directory.GetFiles(imagePath, "*.png"))
    {
        using (Bitmap b = new Bitmap(imagePath))
        {
            yield return DecodeTopLeftCorner(b);
        }
    }
}

private static string DecodeTopLeftCorner(Bitmap bitmap)
{
    var rect = new Rectangle(0, 0, 100, 100);
    using (var topLeft = bitmap.Clone(rect, bitmap.PixelFormat))
    {
        return new QRCodeDecoder().decode(new QRCodeBitmapImage(topLeft));
    }
}
于 2013-02-28T16:21:22.017 回答
1

您可以使用具有以下类型的 GetFiles:

string[ ] files = Directory.GetFiles ( path, "*.png", SearchOption.AllDirectories ); 
于 2013-02-28T14:21:38.437 回答