Skip to content

Commit 9a6a6ad

Browse files
committed
Update README.md
1 parent fbf747f commit 9a6a6ad

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

README.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- [Supported Python Version](#supported-python-version)
1414
- [Supported Platforms](#supported-platforms)
1515
- [Installation](#installation)
16+
- [License](#license)
1617
- [Supported Symbologies](#supported-symbologies)
1718
- [Release Notes](#release-notes)
1819
- [Interfaces](#interfaces)
@@ -26,16 +27,14 @@
2627
- [Contact Us](#contact-us)
2728

2829
### Version
29-
- **7.5**
30+
- **7.6**
3031

3132
### Supported Platforms
3233
- **Windows x64**
3334

34-
- **Linux**
35+
- **Linux(x64, ARM32, ARM64)**
3536

36-
- **Mac OS**
37-
38-
- **Raspberry Pi OS**
37+
- **macOS**
3938

4039
### Supported Python Versions
4140

@@ -49,6 +48,10 @@
4948

5049
>**pip install dbr**
5150
51+
### License
52+
53+
Apply for a trial license: https://www.dynamsoft.com/CustomerPortal/Portal/Triallicense.aspx
54+
5255
### Supported Symbologies
5356
*We support all major barcodes symbologies across a variety of industries such as government, finance, retail, warehouse inventory, and healthcare.*
5457

@@ -756,6 +759,7 @@ Describes the text result order mode.
756759
- roi_id : The ID of the ROI (Region Of Interest) generated by the SDK. -1 means the original image.
757760
- scale_down_ratio : The scale down ratio
758761
- frame_id : The ID of the operated frame
762+
- rpm_colour_argument_index : The index of ForeAndBackgroundColour argument used for RegionPredetectionMode
759763

760764

761765
#### Exception Class Interface
@@ -877,6 +881,17 @@ Describes the text result order mode.
877881
- @return text_results <list[class TextResult]> : All text results.
878882
- @exception BarcodeReaderError
879883

884+
- decode_buffer_manually(self, buffer, width, height, stride, image_pixel_format, template_name="")
885+
- @description Decodes barcodes from the memory buffer containing image pixels in defined format.
886+
- @param buffer <bytes or bytearray> : The array of bytes which contain the image data.
887+
- @param width <int> : The width of the image in pixels.
888+
- @param height <int> : The height of the image in pixels.
889+
- @param stride <int> : The stride (or scan width) of the image.
890+
- @param image_pixel_format <EnumImagePixelFormat> : The image pixel format used in the image byte array. Default value = EnumImagePixelFormat.IPF_RGB_888.
891+
- @param template_name(optional) <str> : The template name.
892+
- @return text_results <list[class TextResult]> : All text results.
893+
- @exception BarcodeReaderError : If error happens, this function will throw a BarcodeReaderError exception that can report the detailed error message.
894+
880895
- decode_file_stream(file_stream, template_name="")
881896
- @description Decodes barcodes from an image file in memory.
882897
- @param file_stream <bytearray> : The image file bytes in memory.

0 commit comments

Comments
 (0)