You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently wrote this program which edits an image and copies it to the clipboard with the arboard crate. I noticed this issue, where I get an assertion error with images of certain dimensions:
This image (1030x693) causes the above error:
When my program tries to copy its edited version to the clipboard, it's 1030x1030. I'm sure that this is specific to dimensions, because the program finishes successfully with this image (1030x694):
I found this line to be the one causing this panic, and the worst part is, I can't even use std::panic::catch_unwind because arboard's Clipboard struct doesn't implement UnwindSafe. I would appreciate any help.
The text was updated successfully, but these errors were encountered:
Hey, thanks for replying and I'm sorry for not replying for so long. I've been busy with school and have exams coming up. I'm completely new to Rust, and I've never used C, so I have no idea where to start to research this problem. Do you have any suggestions, or ideas for me?
I recently wrote this program which edits an image and copies it to the clipboard with the
arboard
crate. I noticed this issue, where I get an assertion error with images of certain dimensions:This image (1030x693) causes the above error:
When my program tries to copy its edited version to the clipboard, it's 1030x1030. I'm sure that this is specific to dimensions, because the program finishes successfully with this image (1030x694):
I found this line to be the one causing this panic, and the worst part is, I can't even use
std::panic::catch_unwind
becausearboard
'sClipboard
struct doesn't implementUnwindSafe
. I would appreciate any help.The text was updated successfully, but these errors were encountered: