/qrcode-to-link

qrcode image to link utility, so that you dont have to use your camera to scan it

Primary LanguagePython

QR Code Reader

This Python script reads and decodes QR codes from image files, identifying URLs and other data embedded within them.

Dependencies

  • Python 3
  • OpenCV
  • Pyzbar

Installation

To set up your environment to run the QR code reader, you'll need to install the necessary Python packages. You can install these packages using pip:

pip install opencv-python-headless pyzbar

Usage

Run the script from the command line by passing the image file path as an argument:

python qr_code_reader_file.py <path_to_image>

The script will output any URLs or data found within the QR codes in the image.

Features

  • Reads QR codes from image files.
  • Detects and outputs URLs directly from QR codes.
  • Handles non-URL data embedded within QR codes.

Contribution

Contributions are welcome. Please open an issue first to discuss what you would like to change or add.

License

This project is open-sourced under the MIT License.

Notes

  • Ensure all dependencies are correctly installed as mentioned in the README file.
  • The README format is structured to be GitHub friendly, providing a clear overview, installation guidelines, usage instructions, features, contribution guidelines, and licensing information.