Currently, this software has the sole purpose of serializing whatever image|text you have in the clipboard through the standard output.
The image format of choice is called Portable Arbitrary Map.
cargo build --release
The executable will be located at target/release/pipeclip
This program was meant to be used in conjunction with FFmpeg or similar:
pipeclip | ffmpeg -f pam_pipe -i - .webp
Though, you could use it to dump the contents into a file:
pipeclip > .pam
ffplay -f pam_pipe -i .pam
This app is cross-platform thanks to arboard.