ImageInfo Model
ImageInfo Model documentation for Python SDK
Rendered image metadata for an OCR page.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| width_px | int | Rendered image width in pixels | |
| height_px | int | Rendered image height in pixels | |
| dpi | int | Rendering DPI |
Example
from goodmem_client.models.image_info import ImageInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ImageInfo from a JSON string
image_info_instance = ImageInfo.from_json(json)
# print the JSON string representation of the object
print(ImageInfo.to_json())
# convert the object into a dict
image_info_dict = image_info_instance.to_dict()
# create an instance of ImageInfo from a dict
image_info_from_dict = ImageInfo.from_dict(image_info_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK