How can I combine two animated GIF images into one?
I have two animated .gif
files. Is it possible to combine these two .gif
into one .gif
?
imagemagick image-processing gif
add a comment |
I have two animated .gif
files. Is it possible to combine these two .gif
into one .gif
?
imagemagick image-processing gif
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52
add a comment |
I have two animated .gif
files. Is it possible to combine these two .gif
into one .gif
?
imagemagick image-processing gif
I have two animated .gif
files. Is it possible to combine these two .gif
into one .gif
?
imagemagick image-processing gif
imagemagick image-processing gif
asked Oct 6 '16 at 14:35
orschiroorschiro
5,127645103
5,127645103
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52
add a comment |
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52
add a comment |
2 Answers
2
active
oldest
votes
You can use gifcomb
A program to combine 2 GIF images of exactly the same size
into one. The color maps are merged, but the result may not exceed 256
colors. A boolean mask GIF file can be used to set which pixel from
two images to use at each location. Otherwise any background color
from first image is converted to second image color at that point.
Only the first image of each file is combined; again, all files' first
images must be of exactly the same size.
It is in the repos for 12.04 >> 16.04
sudo apt-get install gifcomb
Here is the manpage
add a comment |
You can use imagemagick for this:
convert animated1.gif animated2.gif combined.gif
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f833842%2fhow-can-i-combine-two-animated-gif-images-into-one%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use gifcomb
A program to combine 2 GIF images of exactly the same size
into one. The color maps are merged, but the result may not exceed 256
colors. A boolean mask GIF file can be used to set which pixel from
two images to use at each location. Otherwise any background color
from first image is converted to second image color at that point.
Only the first image of each file is combined; again, all files' first
images must be of exactly the same size.
It is in the repos for 12.04 >> 16.04
sudo apt-get install gifcomb
Here is the manpage
add a comment |
You can use gifcomb
A program to combine 2 GIF images of exactly the same size
into one. The color maps are merged, but the result may not exceed 256
colors. A boolean mask GIF file can be used to set which pixel from
two images to use at each location. Otherwise any background color
from first image is converted to second image color at that point.
Only the first image of each file is combined; again, all files' first
images must be of exactly the same size.
It is in the repos for 12.04 >> 16.04
sudo apt-get install gifcomb
Here is the manpage
add a comment |
You can use gifcomb
A program to combine 2 GIF images of exactly the same size
into one. The color maps are merged, but the result may not exceed 256
colors. A boolean mask GIF file can be used to set which pixel from
two images to use at each location. Otherwise any background color
from first image is converted to second image color at that point.
Only the first image of each file is combined; again, all files' first
images must be of exactly the same size.
It is in the repos for 12.04 >> 16.04
sudo apt-get install gifcomb
Here is the manpage
You can use gifcomb
A program to combine 2 GIF images of exactly the same size
into one. The color maps are merged, but the result may not exceed 256
colors. A boolean mask GIF file can be used to set which pixel from
two images to use at each location. Otherwise any background color
from first image is converted to second image color at that point.
Only the first image of each file is combined; again, all files' first
images must be of exactly the same size.
It is in the repos for 12.04 >> 16.04
sudo apt-get install gifcomb
Here is the manpage
answered Oct 6 '16 at 15:05
Mark KirbyMark Kirby
14.2k146398
14.2k146398
add a comment |
add a comment |
You can use imagemagick for this:
convert animated1.gif animated2.gif combined.gif
add a comment |
You can use imagemagick for this:
convert animated1.gif animated2.gif combined.gif
add a comment |
You can use imagemagick for this:
convert animated1.gif animated2.gif combined.gif
You can use imagemagick for this:
convert animated1.gif animated2.gif combined.gif
answered Mar 11 at 18:49
Mike BoundsMike Bounds
514
514
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f833842%2fhow-can-i-combine-two-animated-gif-images-into-one%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
try reading this site it will helps you multiple gif
– YOUNES.EK
Oct 6 '16 at 14:52