ImageMagick 7 can not achieve to use convert anymore












0















Previously with ImageMagick 6, I used the following command line to add a white background to a GEOTIF.



convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Now I try to change my command line due to the recent upgrade of ImageMagick to version 7.
But It does not work anymore.



this is my new command line



magick /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Can some know what could happen? or what I am doing wrong?



PS: I have also tried with



magick convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Thanks a lot










share|improve this question























  • I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

    – Diane Delallée
    Nov 28 '18 at 11:21






  • 1





    What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

    – fmw42
    Nov 28 '18 at 18:04


















0















Previously with ImageMagick 6, I used the following command line to add a white background to a GEOTIF.



convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Now I try to change my command line due to the recent upgrade of ImageMagick to version 7.
But It does not work anymore.



this is my new command line



magick /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Can some know what could happen? or what I am doing wrong?



PS: I have also tried with



magick convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Thanks a lot










share|improve this question























  • I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

    – Diane Delallée
    Nov 28 '18 at 11:21






  • 1





    What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

    – fmw42
    Nov 28 '18 at 18:04
















0












0








0








Previously with ImageMagick 6, I used the following command line to add a white background to a GEOTIF.



convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Now I try to change my command line due to the recent upgrade of ImageMagick to version 7.
But It does not work anymore.



this is my new command line



magick /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Can some know what could happen? or what I am doing wrong?



PS: I have also tried with



magick convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Thanks a lot










share|improve this question














Previously with ImageMagick 6, I used the following command line to add a white background to a GEOTIF.



convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Now I try to change my command line due to the recent upgrade of ImageMagick to version 7.
But It does not work anymore.



this is my new command line



magick /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Can some know what could happen? or what I am doing wrong?



PS: I have also tried with



magick convert /path/to/my/geotif.tif -background white -alpha background -define registry:temporary-path=/path/to/my/temp_file/ -alpha off TIFF64:/path/to/my/new_geotif.tif


Thanks a lot







python imagemagick imagemagick-convert






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 28 '18 at 11:20









Diane DelalléeDiane Delallée

8828




8828













  • I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

    – Diane Delallée
    Nov 28 '18 at 11:21






  • 1





    What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

    – fmw42
    Nov 28 '18 at 18:04





















  • I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

    – Diane Delallée
    Nov 28 '18 at 11:21






  • 1





    What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

    – fmw42
    Nov 28 '18 at 18:04



















I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

– Diane Delallée
Nov 28 '18 at 11:21





I read this page to try to porting from 6 to 7: imagemagick.org/script/porting.php

– Diane Delallée
Nov 28 '18 at 11:21




1




1





What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

– fmw42
Nov 28 '18 at 18:04







What is your exact version of ImageMagick 7 and platform/OS? magick -version. Do not use magick convert or convert. Use magick to replace convert on IM 7. For other tools such as identify, you need to preface those with magick. Your command looks fine. Perhaps you can post your tiff file so we can test it. In what way does your new command not work?

– fmw42
Nov 28 '18 at 18:04














0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53518266%2fimagemagick-7-can-not-achieve-to-use-convert-anymore%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53518266%2fimagemagick-7-can-not-achieve-to-use-convert-anymore%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks