nohn/analogmeterreader

Read analog meters

1.2.0 2021-02-28 18:19 UTC

This package is auto-updated.

Last update: 2024-05-05 12:29:43 UTC


README

Reads analog meters with PHP. The needles of the analog gauges currently have to be red.

0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9

CI Latest Stable Version Total Downloads Latest Unstable Version License

Installation

$ composer require nohn/analogmeterreader

Usage

Passing an Imagick object

use nohn\AnalogMeterReader\AnalogMeter;

$amr = new AnalogMeter($imagick_object, 'r');
echo $amr->getValue();

Passing a file path

use nohn\AnalogMeterReader\AnalogMeter;

$amr = new AnalogMeter($path_to_image_file, 'r');
echo $amr->getValue();

Practical use example

See nohn/watermeter for a real world use case.

How to contribute

You can contribute to this project by:

License

analogmeterreader is released under the GNU Affero General Public License.