Skip to main content

Spire.OCR for Python is a professional OCR component used to read text in image formats such as JPG,PNG,GIF,BMP, and TIFF

Project description

Spire.OCR for Python: High-Accuracy OCR API for Efficient Text Extraction from Images

Spire.OCR for Python

Product PageDocumentationExamplesForumTemporary LicenseCustomized Demo

Spire.OCR for Python is a robust and professional Optical Character Recognition (OCR) library designed to enable developers to extract text from images in various formats, including JPG, PNG, GIF, BMP, and TIFF. This library provides an intuitive and straightforward solution for integrating OCR capabilities into Python applications, allowing users to easily extract text from popular image formats.

Key Features

  • Text Extraction: Extract text from images with support for commonly used fonts such as Arial, Times New Roman, Courier New, Verdana, Tahoma, and Calibri, in regular, bold, and italic styles.
  • Multilingual Support: Recognize text in multiple languages, including English, Chinese, French, German, Japanese, and Korean, making it suitable for global applications.
  • Image Format Compatibility: Supports extraction of text from a wide range of image file formats like JPG, PNG, BMP, GIF, and TIFF.
  • Cross-Platform: Compatible with OCR feature on Windows, Linux and Mac operating systems.
  • Easy Integration: Seamlessly integrate Spire.OCR for Python into your projects with a simple API that requires minimal coding effort.

Supported Languages:

  • English
  • Chinese
  • Japanese
  • Korean
  • German
  • French

Supported Fonts:

Commonly used fonts are supported, such as:

  • Arial
  • Times New Roman
  • Courier New
  • Verdana
  • Tahoma
  • Calibri

Supported Font Styles:

  • Regular
  • Bold
  • Italic

Supported Image File Formats:

  • JPG
  • PNG
  • BMP
  • GIF
  • TIFF

Installation

To install Spire.OCR for Python, you can use pip, the Python package manager. Simply run the following command:

pip install Spire.OCR

Or manually download Spire.OCR for Python and import it into your project.

Examples

Extract Text from an Image File

from spire.ocr import *

scanner = OcrScanner()

configureOptions = ConfigureOptions()
configureOptions.ModelPath = r"D:\OCR\win-x64"
configureOptions.Language = "English"
scanner.ConfigureDependencies(configureOptions)

scanner.Scan(r"Data\Sample.png")

#output the text and the blocks
text = scanner.Text.ToString() + "\n"
for block in scanner.Text.Blocks:
    rectangle = block.Box
    postions = f"{block.Text} -> x : {rectangle.X} , y : {rectangle.Y} , w : {rectangle.Width} , h : {rectangle.Height}"
    text += postions + "\n"

with open('output.txt','a',encoding='utf-8') as file:
    file.write(text+ "\n")

Extract Text from an Image Stream

from spire.ocr import *

scanner = OcrScanner()
configureOptions = ConfigureOptions()

configureOptions.ModelPath = r"D:\OCR\win-x64"
configureOptions.Language = "Japan"
scanner.ConfigureDependencies(configureOptions)

image_stream = Stream(r"Data\JapaneseSample.png")
image_format = OCRImageFormat.Png

scanner.Scan(image_stream,image_format)
text = scanner.Text.ToString()

with open('output.txt','a',encoding='utf-8') as file:
    file.write(text)

Product PageDocumentationExamplesForumTemporary LicenseCustomized Demo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spire_ocr-2.1.0-py3-none-win_amd64.whl (11.1 MB view details)

Uploaded Python 3Windows x86-64

spire_ocr-2.1.0-py3-none-manylinux_2_31_x86_64.whl (11.2 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ x86-64

spire_ocr-2.1.0-py3-none-manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded Python 3

spire_ocr-2.1.0-py3-none-macosx_10_7_universal.whl (21.6 MB view details)

Uploaded Python 3macOS 10.7+ universal (x86-64, i386, PPC64, PPC)

File details

Details for the file spire_ocr-2.1.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: spire_ocr-2.1.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.11

File hashes

Hashes for spire_ocr-2.1.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 401faa2934a5650aa3ada1f3651d710d2c66c34e1e623e5f0d66005fb5f980f4
MD5 5e9f563ca9ee37df86a22592526bf50f
BLAKE2b-256 8be4ac7784c4280a91e06ce3bdf168b2ecaebbeaea78ef141a621a65ec4924de

See more details on using hashes here.

File details

Details for the file spire_ocr-2.1.0-py3-none-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for spire_ocr-2.1.0-py3-none-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 eab7e126dabd77cef4fec1f2e256858ea9e2ae791919f9c248a1190419276eec
MD5 c74bb1a32913c59971b9a8a39e2417b8
BLAKE2b-256 da7c1876671831d08390c9af8aa3a882f9a2b7efd1b9a49327e7303403e4d875

See more details on using hashes here.

File details

Details for the file spire_ocr-2.1.0-py3-none-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spire_ocr-2.1.0-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 926fce9222df2f8d2811d2b5fb39dab54024632ab0018c5df918bfafe1b2d716
MD5 6e615ea312bbe1b5e30c218630bb61f6
BLAKE2b-256 9df13a44fc997845ed90e0b4a4c414d9e4a98db71928e64ecac8c0aa24aead98

See more details on using hashes here.

File details

Details for the file spire_ocr-2.1.0-py3-none-macosx_10_7_universal.whl.

File metadata

  • Download URL: spire_ocr-2.1.0-py3-none-macosx_10_7_universal.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, macOS 10.7+ universal (x86-64, i386, PPC64, PPC)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.11

File hashes

Hashes for spire_ocr-2.1.0-py3-none-macosx_10_7_universal.whl
Algorithm Hash digest
SHA256 5695a5db24caa8c98fa982a2298bddc48ad5c907e83d0efc08f7befef40749a5
MD5 e952418e30a9989d9c60ba73dc624ed9
BLAKE2b-256 f1dc5fccbfbbecb1788d175d5b5624bdf6ec7805e86853f01b9533eed488f1b9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page