Spaces:
Sleeping
Sleeping
File size: 195 Bytes
3ab32c0 |
1 2 3 4 5 6 7 |
from PIL import Image
def table_image(cropped_table, dpi=144) -> Image.Image:
"""Generate a preview image from gmft CroppedTable."""
return cropped_table.image(dpi=dpi, padding="auto")
|