I am using streamlit_drawable_canvas and have an image as under:
<class âPIL.Image.Imageâ> with width as 1280 and height is 720
I have played with height=200, width=356 and it shows a proportionate image on the canvas as shown below:
To double the canvas area, When I use height=400, width=711 and it shows a dis0proportionate and cropped image on the canvas as shown below:
canvas_result = st_canvas(
fill_color=ârgba(255, 255, 255, 0)â, # Fixed fill color with some opacity
stroke_width=stroke_width,
stroke_color=stroke_color,
background_color=bg_color,
background_image=my_resized_pillow,
update_streamlit=realtime_update,
height=200,
width=356,
drawing_mode=drawing_mode,
point_display_radius=point_display_radius if drawing_mode == âpointâ else 0,
display_toolbar=st.sidebar.checkbox(âDisplay toolbarâ, True),
key=âfull_appâ,
)
How do I get a large canvas size to work on?