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 am experiencing an issue where the captured area size is doubled compared to the specified area in the Options. Specifically, when I set the capture area to a width of 500 pixels and a height of 500 pixels, the resulting frames have a resolution of 1000x1000 pixels.
Is this doubling of the captured area size expected behavior?
let options = Options{fps:60,target:Some(display),show_cursor:true,show_highlight:true,excluded_targets:None,output_type: scap::frame::FrameType::BGRAFrame,output_resolution: scap::capturer::Resolution::Captured,crop_area:Some(Area{origin:Point{x:0.0,y:0.0},size:Size{width:500.0,height:500.0,},}),
..Default::default()};
Output:
Received BGRA frame 0 of width 1000 and height 1000 and time 0
The text was updated successfully, but these errors were encountered:
I am experiencing an issue where the captured area size is doubled compared to the specified area in the Options. Specifically, when I set the capture area to a width of 500 pixels and a height of 500 pixels, the resulting frames have a resolution of 1000x1000 pixels.
Is this doubling of the captured area size expected behavior?
Output:
The text was updated successfully, but these errors were encountered: