0

Aspose.OCR私は、
私のコード で画像からテキストを抽出しようとしました:

Const resourceFileName As String = "c:\2011.08.05 v1.1 Aspose.OCR.Resouces.zip"
        Dim uploadedImage As String = "c:\ConvertMeToText.bmp"
        Try
            'Create OcrEngine instance and assign 
            'image, language and image configuration
            Dim ocr As New OcrEngine()
            ocr.Image = ImageStream.FromFile(uploadedImage)

            ocr.Languages.AddLanguage(Language.Load("english"))
            ocr.Config.NeedRotationCorrection = True
            ocr.Config.UseDefaultDictionaries = True
            Dim fileStream As New FileStream(resourceFileName, FileMode.Open)
            ocr.Resource = fileStream
            Try
                If ocr.Process() Then
                    TextBox1.Text = ocr.Text.ToString()
                End If
            Catch ex As Exception
                MsgBox("Exception: " & ex.Message)
            End Try
            fileStream.Close()
            ocr = Nothing
        Catch ex As Exception
           MsgBox("Exception: " & ex.Message)
        End Try


例外: ZipEntry::ReadHeader(): 位置 0x00000000 の不正な署名 (0x00000100)

4

1 に答える 1

1

私の名前はNayyerで、Asposeでサポート開発者/技術エバンジェリストとして働いています。

例外として、Aspose.OCRのバージョンとリソースファイルのバージョンにいくつかの違いがあるようです。すべてのAspose.OCRリリースは個別のresources.zipファイルを使用し、2011.08.05 v1.1Aspose.OCR.Resouces.zipでAspose.OCRv1.0.0を使用しようとすると、同様の例外が発生する可能性があります。Aspose.OCR v.1.1.0の最新バージョンを試すことができ、その互換性のあるリソースファイルはこのリンクから入手できます。

于 2012-10-09T13:31:41.783 に答える