Making a full local copy

┌───────────────┐ssh ┌────────────┐                           ┌───────────┐
│ fedora-33.img │───▶│ qcow2 file │───▶ qemu-img convert ────▶│ local.img │
└───────────────┘    └────────────┘                           └───────────┘
 remote server                           local machine


qemu-img create -f qcow2 \
         -b ssh://remote/path/to/fedora-33.img snapshot.qcow2
qemu-img convert snapshot.qcow2 local.img -p