streamlit-cropper
streamlit-cropper copied to clipboard
UnboundLocalError: local variable 'orig_file' referenced before assignment
Hello streamlit-cropper Developers!
I got the error UnboundLocalError: local variable 'orig_file' referenced before assignment
with
st_cropper(Image.open(file), realtime_update=True, box_color='#0000FF', should_resize_image=False)
That's because the variable orig_file
defined in a block with if should_resize_image:
here but always used later even if should_resize_image
is False
and orig_file
is not defined.