From 038ce27f96e1b9a90f5c13a3722dd745f8bad0e2 Mon Sep 17 00:00:00 2001 From: EDScodes <44623646+jklpo360@users.noreply.github.com> Date: Wed, 15 Jul 2026 19:29:28 -0500 Subject: [PATCH] Update changing_application_icon_for_windows.rst, which resolves #12149 I have changed the ImageMagick command to use ``magick`` instead of ``magick convert``. Using ``magick convert``, as directed by this article gave me a depreciation message which read: "WARNING: The convert command is deprecated in IMv7, use "magick" instead of "convert" or "magick convert"". I looked around, and using ``magick convert`` used to run this command with backwards compatibility for the IMv6 way of formatting. The formatting for this command didn't change, so it would be more correct to just use ``magick``. Additionally, this backwards compatibility was removed at some point and ``magick convert`` no longer executes and instead just gives the warning detailed above. --- tutorials/export/changing_application_icon_for_windows.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/export/changing_application_icon_for_windows.rst b/tutorials/export/changing_application_icon_for_windows.rst index d817d8f8253..13b6f9a89d5 100644 --- a/tutorials/export/changing_application_icon_for_windows.rst +++ b/tutorials/export/changing_application_icon_for_windows.rst @@ -28,9 +28,9 @@ using this `ImageMagick `_ command: .. code-block:: none - magick convert icon.png -define icon:auto-resize=256,128,64,48,32,16 icon.ico + magick icon.png -define icon:auto-resize=256,128,64,48,32,16 icon.ico -Depending on which version of ImageMagick you installed, you might need to leave out the ``magick`` and run this command instead: +Depending on which version of ImageMagick you installed, you might need to use this command instead: .. code-block:: none