webp-screenshot-rust 1.0.0

High-performance cross-platform screenshot capture library with WebP encoding, hardware acceleration, and multi-monitor support for Windows, macOS, and Linux
Documentation
1
2
3
4
5
6
7
//! Pipeline modules for optimized capture and encoding

pub mod streaming;
pub mod zero_copy;

pub use streaming::{StreamingPipeline, StreamingPipelineBuilder};
pub use zero_copy::ZeroCopyOptimizer;