GoodMem
ReferenceClient SDKsPython SDKModels

ImageInfo Model

ImageInfo Model documentation for Python SDK

Rendered image metadata for an OCR page.

Properties

NameTypeDescriptionNotes
width_pxintRendered image width in pixels
height_pxintRendered image height in pixels
dpiintRendering 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

On this page