aliir7441 downloadsCmd+C copies the actual image when an image embed is selected in source mode.
Cmd+C (or Ctrl+C) copies the actual image to your clipboard when an image embed is selected in an Obsidian note — instead of copying the wikilink text.
By default, selecting ![[my-photo.png]] in source mode and pressing Cmd+C copies the literal text ![[my-photo.png]]. If you want to paste the image into another app (Slack, Mail, Figma, etc.), you have to right-click and "Copy image" from the rendered preview, which breaks flow.
This plugin makes Cmd+C just work: select the image embed, copy, paste anywhere.

The plugin listens for the system copy event. When the current selection is either:
![[filename.ext]] (source mode), or<img> element (Live Preview),it intercepts the copy, reads the image binary from your vault, and writes it to the clipboard as the correct MIME type. SVGs are written as text. Everything else is written as Blob.
Supported formats: PNG, JPG/JPEG, GIF, BMP, TIFF, WebP, SVG.
While the plugin is awaiting community-plugin approval, install via BRAT:
aliir74/copy-image-hotkeymain.js, manifest.json, and styles.css from the latest release<your-vault>/.obsidian/plugins/copy-image-hotkey/navigator.clipboard.write API with ClipboardItem).copy event.MIT — see LICENSE.