create image with transparent background with ImageMagick
I am currently working on a script to process assets for a game. I am breaking down old assets and reorganizing them for a new format. The original images have transparent backgrounds already. When I append images back together there is a white background applied to part of the image.
Most sources say to just use -background "#FFFFFF"
to turn anything white transparent. But some of my assets use white and if I use this then the asset is destroyed.
This is the First image I am merging with this Second image and here is the output of script
here is part of my script. I would like to just say -background none
but that does not work. How can I create an image without adding a background?
convert output3.png output4.png -append output6.png
convert output6.png output5.png -append output7.png
convert output7.png space.png -append -background none output8.png
imagemagick
add a comment |
I am currently working on a script to process assets for a game. I am breaking down old assets and reorganizing them for a new format. The original images have transparent backgrounds already. When I append images back together there is a white background applied to part of the image.
Most sources say to just use -background "#FFFFFF"
to turn anything white transparent. But some of my assets use white and if I use this then the asset is destroyed.
This is the First image I am merging with this Second image and here is the output of script
here is part of my script. I would like to just say -background none
but that does not work. How can I create an image without adding a background?
convert output3.png output4.png -append output6.png
convert output6.png output5.png -append output7.png
convert output7.png space.png -append -background none output8.png
imagemagick
Hi Andrew, I don't experience what you say. Please notice that the parameter isnone
, you typednune
. I downloaded your first and second pics and got a good output usingconvert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55
add a comment |
I am currently working on a script to process assets for a game. I am breaking down old assets and reorganizing them for a new format. The original images have transparent backgrounds already. When I append images back together there is a white background applied to part of the image.
Most sources say to just use -background "#FFFFFF"
to turn anything white transparent. But some of my assets use white and if I use this then the asset is destroyed.
This is the First image I am merging with this Second image and here is the output of script
here is part of my script. I would like to just say -background none
but that does not work. How can I create an image without adding a background?
convert output3.png output4.png -append output6.png
convert output6.png output5.png -append output7.png
convert output7.png space.png -append -background none output8.png
imagemagick
I am currently working on a script to process assets for a game. I am breaking down old assets and reorganizing them for a new format. The original images have transparent backgrounds already. When I append images back together there is a white background applied to part of the image.
Most sources say to just use -background "#FFFFFF"
to turn anything white transparent. But some of my assets use white and if I use this then the asset is destroyed.
This is the First image I am merging with this Second image and here is the output of script
here is part of my script. I would like to just say -background none
but that does not work. How can I create an image without adding a background?
convert output3.png output4.png -append output6.png
convert output6.png output5.png -append output7.png
convert output7.png space.png -append -background none output8.png
imagemagick
imagemagick
edited Jan 9 at 22:49
Andrew Pullins
asked Jan 9 at 19:22
Andrew PullinsAndrew Pullins
64
64
Hi Andrew, I don't experience what you say. Please notice that the parameter isnone
, you typednune
. I downloaded your first and second pics and got a good output usingconvert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55
add a comment |
Hi Andrew, I don't experience what you say. Please notice that the parameter isnone
, you typednune
. I downloaded your first and second pics and got a good output usingconvert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55
Hi Andrew, I don't experience what you say. Please notice that the parameter is
none
, you typed nune
. I downloaded your first and second pics and got a good output using convert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Hi Andrew, I don't experience what you say. Please notice that the parameter is
none
, you typed nune
. I downloaded your first and second pics and got a good output using convert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392419%2fcreate-image-with-transparent-background-with-imagemagick%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
Thanks for contributing an answer to Super User!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392419%2fcreate-image-with-transparent-background-with-imagemagick%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Hi Andrew, I don't experience what you say. Please notice that the parameter is
none
, you typednune
. I downloaded your first and second pics and got a good output usingconvert first.png second.png -append -background none output.png
– Jorge Valentini
Jan 9 at 19:36
Damnit. Haha. Well fixed that typo but now I am getting the same problem but it has a black background instead of white...
– Andrew Pullins
Jan 9 at 22:55