On Windows (incl. cygwin) org-download-clipboard tries to use the convert command line utility from ImageMagick. convert is legacy (and not installed by default anymore). magick can be used instead (e.g. magick clipboard: test.png saves the clipboard as a PNG).
Using convert on Windows fails without error message because there is a builtin c:/WINDOWS/system32/convert.exe (at least on Windows 11) that converts filesystems, so this one is used.
On Windows (incl. cygwin)
org-download-clipboard
tries to use theconvert
command line utility from ImageMagick.convert
is legacy (and not installed by default anymore).magick
can be used instead (e.g.magick clipboard: test.png
saves the clipboard as a PNG).Using
convert
on Windows fails without error message because there is a builtinc:/WINDOWS/system32/convert.exe
(at least on Windows 11) that converts filesystems, so this one is used.