Swift UI 2.0 Drag Image Mac to Desktop or the Recycle Bin

I would like to save an image via drag onto the Mac desktop as PNG or BMP or move this image via drag onto the Mac paper copy.

Code Block Image(nsImage: accountVM.userImage)                    .resizable()                    .aspectRatio(contentMode: .fill)                    .frame(maxWidth: 100, maxHeight: 150)                    .onDrag { return NSItemProvider(object: accountVM.userImage as NSImage) }


Swift UI 2.0 Drag Image Mac to Desktop or the Recycle Bin
 
 
Q