 Have you wondered how you can make your own gifs? Now, certainly, this is not the easiest way, but it is a fun project for learning, and heck, it might come in useful one day ;) [You may remember that I already covered how to create a movie from time-lapse photographs](https://steemit.com/linux/@makerhacks/converting-videos-and-creating-timelapse-from-photographs-in-linux), this is similar and takes the technique a couple of steps further. ### Code #### [Full Code Gist Here](https://gist.github.com/omiq/159e042339d3d27f2e6a490924d881fd) First, we need some modules. OS and Shutil are for shell operations, because we need to call tools and create/delete folders. ``` import os import shutil from PIL import ImageFont from PIL import Image from PIL import ImageDraw ``` Next, we create the folder if it does not already exist, nuking the contents if it does. We also create our image, loading in a background first. ``` if os.path.exists('frames'): shutil.rmtree('frames') os.mkdir('frames') img_background = Image.open('background.png') img = Image.new("RGBA", img_background.size, (0, 0, 0, 255)) ``` We need three colours, and a nice font. ``` x = 10 y = 10 silver = (100, 100, 100, 255) purple = (100, 0, 200, 255) white = (255, 255, 255, 255) text = '''Boing!''' font = ImageFont.truetype("/home/chrisg/Ubuntu-B.ttf", 75) draw = ImageDraw.Draw(img) ``` Now we create the frames of animation, 24 frames for 1 second. All I am doing here is adding text to each frame in a different location, you can get wild in yours! ``` for N in range(0, 24): y += N img.paste(img_background, (0, 0)) draw.text((x+4, y+4), text, purple, font=font) draw.text((x+2, y+2), text, silver, font=font) draw.text((x, y), text, white, font=font) img.save("./frames/{}.png".format(str(N).zfill(3))) ``` All that is left is to generate an AVI then convert to gif. For higher quality we can come back and [optimize the palette](https://steemit.com/programming/@makerhacks/how-to-get-higher-quality-gifs-with-ffmpeg), but for simplicity this is sufficient for now! ``` os.system('ffmpeg -framerate 24 -i frames/%03d.png -c:v ffv1 -r 24 -y out.avi') os.system('ffmpeg -y -i out.avi out.gif') shutil.rmtree('frames') ``` <hr> https://cdn.steemitimages.com/0x0/https://cdn.discordapp.com/attachments/383256479056134146/446022370608676864/makerhacks.png
author | makerhacks |
---|---|
permlink | how-to-create-animated-gifs-with-python |
category | python |
json_metadata | {"tags":["python","raspberrypi","making","programming","memes"],"image":["https://cdn.steemitimages.com/DQmTUWkBZhdF4ctAUdXpmFnRz1YYfU6mZig1Cdyf2Lzg8WX/out.gif","https://cdn.steemitimages.com/0x0/https://cdn.discordapp.com/attachments/383256479056134146/446022370608676864/makerhacks.png"],"links":["https://steemit.com/linux/@makerhacks/converting-videos-and-creating-timelapse-from-photographs-in-linux","https://gist.github.com/omiq/159e042339d3d27f2e6a490924d881fd","https://steemit.com/programming/@makerhacks/how-to-get-higher-quality-gifs-with-ffmpeg"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-05-25 17:13:27 |
last_update | 2018-05-25 21:35:21 |
depth | 0 |
children | 4 |
last_payout | 2018-06-01 17:13:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 18.212 HBD |
curator_payout_value | 0.977 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,478 |
author_reputation | 156,976,786,045,669 |
root_title | "How to Create Animated Gifs with Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,671,708 |
net_rshares | 5,046,525,757,947 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
germanaure | 0 | 2,320,951,474 | 100% | ||
coar | 0 | 8,702,035,278 | 100% | ||
jmcgready | 0 | 2,318,932,374 | 100% | ||
snowflake | 0 | 484,050,259,371 | 41% | ||
bidnat | 0 | 2,367,429,267 | 100% | ||
melek | 0 | 7,238,023,452 | 100% | ||
mione | 0 | 33,201,413,147 | 100% | ||
telos | 0 | 11,193,825,604 | 19% | ||
themonetaryfew | 0 | 114,471,163,884 | 100% | ||
jrhughes | 0 | 16,795,455,171 | 100% | ||
sylph | 0 | 83,698,498,956 | 100% | ||
olezoom | 0 | 2,582,960,164 | 100% | ||
alnedkov | 0 | 20,351,465,782 | 100% | ||
develcuy | 0 | 38,820,554,297 | 100% | ||
dontbenormal | 0 | 14,897,406,013 | 100% | ||
dianargenti | 0 | 20,574,986,822 | 100% | ||
ubik | 0 | 23,840,184,962 | 100% | ||
sidwaterman | 0 | 7,790,031,700 | 100% | ||
nataliechickee | 0 | 10,944,532,870 | 100% | ||
jcsteem | 0 | 9,049,036,862 | 100% | ||
libert | 0 | 5,514,511,171 | 100% | ||
steeming4 | 0 | 2,356,616,375 | 100% | ||
detlef-s | 0 | 11,721,264,045 | 100% | ||
fede93g | 0 | 8,478,941,728 | 100% | ||
markperandin | 0 | 2,295,754,229 | 100% | ||
klinckify | 0 | 2,350,764,067 | 100% | ||
samstickkz | 0 | 6,774,274,701 | 100% | ||
inceptionally | 0 | 496,582,620,689 | 76% | ||
seongbuk | 0 | 2,334,325,129 | 100% | ||
snoe860 | 0 | 13,941,996,394 | 100% | ||
dexter-stoner | 0 | 2,531,912,695 | 100% | ||
maurocostarica | 0 | 17,690,014,006 | 100% | ||
bat-junior | 0 | 37,299,878,597 | 100% | ||
thepsychguide | 0 | 3,896,385,269 | 100% | ||
steemitcitizen | 0 | 7,883,481,985 | 100% | ||
theadmiral0 | 0 | 120,951,242,821 | 100% | ||
nolnocluap | 0 | 9,415,549,207 | 100% | ||
olesia | 0 | 3,154,766,678 | 100% | ||
errymil | 0 | 41,480,846,317 | 100% | ||
greyman | 0 | 11,925,390,064 | 100% | ||
lamex | 0 | 2,338,912,870 | 100% | ||
arqetype | 0 | 7,137,623,850 | 100% | ||
rkaz | 0 | 2,382,389,703 | 100% | ||
khamen | 0 | 20,507,684,634 | 100% | ||
dailygiveaway | 0 | 464,723,520 | 76% | ||
whiteblood | 0 | 2,556,950,145 | 100% | ||
shae-meyer | 0 | 2,509,453,185 | 100% | ||
flurgx | 0 | 71,124,298,150 | 100% | ||
gyanibilli | 0 | 2,764,154,088 | 100% | ||
christianytony | 0 | 17,124,842,359 | 100% | ||
patriot | 0 | 8,033,046,755 | 100% | ||
keshawn | 0 | 2,344,483,088 | 100% | ||
krisii | 0 | 24,004,498,724 | 100% | ||
steem-gaming | 0 | 7,205,120,243 | 100% | ||
beajinsu | 0 | 27,017,322,665 | 100% | ||
ninaflowers | 0 | 2,734,097,861 | 100% | ||
dbwitty | 0 | 19,869,232,446 | 100% | ||
henryn2020 | 0 | 9,042,785,102 | 100% | ||
rawpride | 0 | 7,258,074,709 | 10% | ||
arorapuneet | 0 | 26,970,637,232 | 100% | ||
xevil | 0 | 7,299,876,383 | 100% | ||
valderrama | 0 | 11,933,863,189 | 100% | ||
dreamzchm | 0 | 2,341,352,258 | 100% | ||
mackcom | 0 | 6,750,432,996 | 100% | ||
coffeelovers | 0 | 5,887,397,549 | 100% | ||
mystifact | 0 | 6,021,655,776 | 100% | ||
ccoin | 0 | 7,124,696,629 | 100% | ||
raili | 0 | 9,889,018,985 | 100% | ||
creativebuilds | 0 | 2,321,092,079 | 100% | ||
lisaocampo | 0 | 110,094,295,928 | 100% | ||
prashant | 0 | 8,383,576,287 | 100% | ||
kingjan | 0 | 2,411,332,530 | 100% | ||
fat-elvis | 0 | 13,076,268,480 | 100% | ||
themarkymark | 0 | 59,846,067,119 | 100% | ||
steemitbc | 0 | 2,413,214,791 | 100% | ||
rocketgyi | 0 | 2,486,052,983 | 100% | ||
cocinecomounchef | 0 | 2,399,050,282 | 100% | ||
taukproung85 | 0 | 53,125,947 | 100% | ||
upgoat | 0 | 2,336,458,750 | 100% | ||
buildteam | 0 | 12,603,623,257 | 100% | ||
upbloke | 0 | 68,252,178,030 | 100% | ||
glitterbooster | 0 | 9,166,196,944 | 100% | ||
bachone | 0 | 2,304,243,355 | 100% | ||
warjar | 0 | 447,346,948,139 | 100% | ||
shrazi | 0 | 21,785,403,149 | 100% | ||
deluge | 0 | 16,486,004,848 | 100% | ||
bunnypunia | 0 | 13,409,934,655 | 100% | ||
w-inv | 0 | 13,419,842,817 | 98% | ||
tagsplanet | 0 | 10,541,756,256 | 100% | ||
chryzed | 0 | 2,352,484,345 | 100% | ||
salas | 0 | 8,680,821,226 | 100% | ||
hariman | 0 | 433,013,585 | 100% | ||
melbookermusic | 0 | 37,784,308,810 | 100% | ||
techblogger | 0 | 34,643,023,041 | 100% | ||
engramanullah | 0 | 10,921,311,390 | 100% | ||
initforthemoney | 0 | 7,241,874,676 | 100% | ||
mikepm74 | 0 | 70,242,753,273 | 100% | ||
tonygreene113 | 0 | 5,626,816,624 | 100% | ||
click3rs | 0 | 2,379,645,630 | 100% | ||
malikidrees | 0 | 9,652,518,961 | 100% | ||
bestlife | 0 | 37,657,731,782 | 100% | ||
muhammadadil | 0 | 9,854,023,585 | 57% | ||
catchup | 0 | 2,370,007,807 | 100% | ||
ligayagardener | 0 | 2,371,437,702 | 100% | ||
hamidaansary | 0 | 9,146,967,725 | 100% | ||
fakhre | 0 | 2,376,461,690 | 100% | ||
walidsalah | 0 | 2,328,661,389 | 100% | ||
lixing | 0 | 2,403,801,192 | 100% | ||
thaiprincess | 0 | 2,330,227,794 | 100% | ||
makerhacks | 0 | 54,315,379,788 | 100% | ||
hannesl | 0 | 15,296,324,318 | 100% | ||
flameburst | 0 | 10,610,959,658 | 100% | ||
vishalsingh4997 | 0 | 8,190,791,711 | 100% | ||
cryptonewsdesk | 0 | 2,199,238,400 | 100% | ||
luciamuresan | 0 | 9,830,551,663 | 100% | ||
simi | 0 | 17,984,919,002 | 100% | ||
macmaniac77 | 0 | 14,335,543,472 | 100% | ||
cryptoflower23 | 0 | 3,707,132,396 | 100% | ||
grupobimbyaa | 0 | 433,957,845 | 100% | ||
davidcross | 0 | 2,547,476,402 | 100% | ||
wamsverrucko | 0 | 2,330,789,775 | 100% | ||
michaeljpsalazar | 0 | 2,998,005,629 | 100% | ||
krishankumar | 0 | 2,577,368,025 | 100% | ||
joanderit | 0 | 2,332,341,756 | 100% | ||
annadoll | 0 | 8,766,547,502 | 100% | ||
dandan2013 | 0 | 433,831,430 | 100% | ||
photosdaily | 0 | 433,730,023 | 100% | ||
sajib7 | 0 | 39,115,821,406 | 100% | ||
mayankverma | 0 | 4,074,823,715 | 100% | ||
nathanieloamhen | 0 | 172,054,799 | 5% | ||
elbreeder | 0 | 2,419,318,080 | 100% | ||
sharif24 | 0 | 2,345,987,239 | 100% | ||
funstuff | 0 | 460,570,029 | 100% | ||
whatstuff | 0 | 449,676,999 | 100% | ||
nirgf | 0 | 5,574,287,505 | 100% | ||
k3nb0b | 0 | 20,596,157,469 | 100% | ||
amanpathak | 0 | 2,364,546,935 | 100% | ||
beauknows | 0 | 25,850,367,802 | 100% | ||
ramsteem | 0 | 12,133,573,820 | 100% | ||
jutdagut | 0 | 428,594,854 | 100% | ||
klizo | 0 | 2,373,841,567 | 100% | ||
murad06 | 0 | 345,641,913 | 50% | ||
myperfectblog | 0 | 2,204,775,481 | 100% | ||
hemanthoj | 0 | 12,207,871,259 | 100% | ||
ygmraykt | 0 | 2,248,330,354 | 100% | ||
seaofhappy | 0 | 7,088,568,548 | 100% | ||
dexterslab | 0 | 2,394,514,739 | 100% | ||
sam1210 | 0 | 2,335,902,503 | 100% | ||
zakariahosen | 0 | 2,779,014,142 | 100% | ||
geekpowered | 0 | 17,880,998,129 | 90% | ||
nikonmarshall | 0 | 2,492,476,184 | 100% | ||
afrasyabmaier | 0 | 2,564,685,662 | 100% | ||
nsiman | 0 | 433,736,559 | 100% | ||
wasimk87 | 0 | 24,483,649,245 | 100% | ||
islamic1 | 0 | 3,411,011,965 | 100% | ||
matiasmenarguez | 0 | 2,417,745,980 | 100% | ||
gooddeeds | 0 | 2,298,247,698 | 100% | ||
thi-js | 0 | 29,091,594,594 | 100% | ||
ryanhagerty | 0 | 2,579,949,125 | 100% | ||
divinitysa | 0 | 2,230,740,302 | 100% | ||
rexcaelestis | 0 | 2,375,702,404 | 100% | ||
m3mt | 0 | 2,300,030,813 | 100% | ||
celioeguga | 0 | 2,191,385,343 | 100% | ||
steemnsfw | 0 | 7,906,001,022 | 100% | ||
kentzz001 | 0 | 2,364,787,709 | 100% | ||
talivet | 0 | 356,995,768 | 50% | ||
caroliny | 0 | 18,900,162,301 | 100% | ||
theuxyeti | 0 | 39,638,965,660 | 100% | ||
irishgirl | 0 | 2,283,347,632 | 100% | ||
talhadogan | 0 | 5,983,071,965 | 100% | ||
adamdonmez | 0 | 12,515,486,608 | 100% | ||
trasric | 0 | 2,317,514,431 | 100% | ||
kryptograf | 0 | 108,241,368,840 | 100% | ||
beauty.world | 0 | 4,927,076,509 | 100% | ||
khinzawlatt | 0 | 2,365,750,166 | 100% | ||
brwaves | 0 | 4,388,989,967 | 100% | ||
gnomicrules | 0 | 436,429,134 | 100% | ||
niko3d | 0 | 3,997,555,280 | 100% | ||
therusticvegan | 0 | 2,359,480,829 | 100% | ||
starcontract | 0 | 2,245,507,473 | 100% | ||
andii | 0 | 2,272,671,637 | 100% | ||
skvyrla | 0 | 3,714,074,234 | 100% | ||
libertylemon | 0 | 2,626,318,690 | 100% | ||
udgu | 0 | 2,265,960,387 | 100% | ||
swt3df1 | 0 | 7,641,549,453 | 100% | ||
xerox-bru | 0 | 12,660,363,691 | 100% | ||
mindscapephotos | 0 | 4,331,744,624 | 100% | ||
pillsjee | 0 | 13,577,951,467 | 100% | ||
jchauhan | 0 | 2,332,832,085 | 100% | ||
yatri | 0 | 11,900,824,368 | 100% | ||
netscape101 | 0 | 1,079,970,422 | 100% | ||
jey-blue | 0 | 2,355,691,553 | 100% | ||
rusdiana | 0 | 2,270,830,278 | 100% | ||
wond2006 | 0 | 8,333,807,521 | 100% | ||
synergysteem | 0 | 6,181,404,409 | 100% | ||
vargart | 0 | 2,543,316,343 | 100% | ||
steemwildboy | 0 | 3,008,387,457 | 100% | ||
arzon-cnaster | 0 | 2,712,926,428 | 100% | ||
favoured001 | 0 | 431,483,747 | 100% | ||
jguzman394 | 0 | 24,282,772,426 | 100% | ||
talentscout | 0 | 2,427,504,736 | 100% | ||
roberta92 | 0 | 11,963,205,098 | 100% | ||
rampagejr | 0 | 6,269,011,473 | 100% | ||
dshelton32 | 0 | 9,385,685,089 | 100% | ||
mikromixstudio | 0 | 2,649,726,085 | 100% | ||
mrsadman | 0 | 13,882,907,142 | 81% | ||
dmxmaster | 0 | 609,657,507 | 100% | ||
hightea | 0 | 2,178,156,042 | 100% | ||
farhankhann | 0 | 6,722,008,089 | 100% | ||
cryptoissweet | 0 | 2,203,204,390 | 100% | ||
pynchon | 0 | 79,366,617 | 100% | ||
christianvas | 0 | 4,146,395,595 | 100% | ||
cryptovate | 0 | 2,478,622,145 | 100% | ||
taiki9121 | 0 | 2,249,602,636 | 100% | ||
cryptodj99 | 0 | 2,339,899,235 | 100% | ||
molikhatun | 0 | 2,257,030,486 | 100% | ||
justlibby | 0 | 2,393,134,973 | 100% | ||
majorsteemian | 0 | 287,350,224 | 50% | ||
taxguy | 0 | 10,810,076,664 | 100% | ||
tpvoter1 | 0 | 83,310,211 | 100% | ||
letsawesome | 0 | 908,578,899 | 100% | ||
sbi3 | 0 | 1,971,615,974 | 1% | ||
ccsbot | 0 | 89,722,358,237 | 100% | ||
steemitshopaus | 0 | 2,337,633,444 | 100% | ||
nelufareasmin | 0 | 2,352,454,664 | 100% | ||
naijawhale | 0 | 2,578,062,621 | 100% | ||
furn01 | 0 | 2,381,267,693 | 100% | ||
faisal1650 | 0 | 2,439,010,627 | 100% | ||
share4every1 | 0 | 73,313,339 | 100% | ||
preshey | 0 | 6,603,953,653 | 100% | ||
xglider | 0 | 48,207,864,258 | 100% | ||
jr006 | 0 | 7,088,955,924 | 100% | ||
emmanuelzod | 0 | 2,416,513,702 | 100% | ||
simplewole | 0 | 64,271,288 | 50% | ||
meher04 | 0 | 2,541,595,736 | 100% | ||
ioba | 0 | 8,742,741,784 | 100% | ||
motherofalegend | 0 | 6,886,573,870 | 100% | ||
citizendog | 0 | 19,987,359,129 | 100% | ||
xxxkoenigxxx | 0 | 4,097,092,945 | 100% | ||
transcendingman | 0 | 839,333,116,671 | 100% | ||
rubaet | 0 | 7,934,827,023 | 100% | ||
riezaldi | 0 | 309,148,316 | 100% | ||
emmywell | 0 | 155,596,976 | 50% | ||
voinnov111 | 0 | 2,531,708,758 | 100% | ||
storywriter | 0 | 12,871,708,165 | 100% | ||
robbie5 | 0 | 7,578,726,597 | 100% | ||
nafisah | 0 | 607,309,269 | 100% | ||
alexander11 | 0 | 5,815,633,214 | 100% | ||
carmucha60 | 0 | 91,776,982 | 100% | ||
ivkaptuk | 0 | 2,321,809,718 | 100% |
Thanks for Lesson! I would Surely Try to Make it with python and share it with you 😊
author | faady92 |
---|---|
permlink | re-makerhacks-how-to-create-animated-gifs-with-python-20180525t181136377z |
category | python |
json_metadata | {"tags":["python"],"app":"steemit/0.1"} |
created | 2018-05-25 18:11:39 |
last_update | 2018-05-25 18:11:39 |
depth | 1 |
children | 0 |
last_payout | 2018-06-01 18:11:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 802,073,335,966 |
root_title | "How to Create Animated Gifs with Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,680,185 |
net_rshares | 4,526,326,598 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
makerhacks | 0 | 4,526,326,598 | 8% |
Awesome. I've created animated gifs from the command line a few times. It might be a pain in the ass, but there's a lot that you can do surprisingly easily if you take the time to look up how. I've never really done it with python though. Always thought about creating a tool to help me make gifs, but never got around to it. Perhaps I should mess around with doing some stuff and create a little library of useful bits of code for making little fun gifs. :)
author | geekpowered |
---|---|
permlink | re-makerhacks-how-to-create-animated-gifs-with-python-20180525t174850377z |
category | python |
json_metadata | {"tags":["python"],"app":"steemit/0.1"} |
created | 2018-05-25 17:48:51 |
last_update | 2018-05-25 17:48:51 |
depth | 1 |
children | 1 |
last_payout | 2018-06-01 17:48:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.099 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 459 |
author_reputation | 99,319,261,112,097 |
root_title | "How to Create Animated Gifs with Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,677,103 |
net_rshares | 26,461,338,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
makerhacks | 0 | 26,461,338,871 | 49% |
Share when you do :D
author | makerhacks |
---|---|
permlink | re-geekpowered-re-makerhacks-how-to-create-animated-gifs-with-python-20180525t175047262z |
category | python |
json_metadata | {"tags":["python"],"app":"steemit/0.1"} |
created | 2018-05-25 17:50:48 |
last_update | 2018-05-25 17:50:48 |
depth | 2 |
children | 0 |
last_payout | 2018-06-01 17:50:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 156,976,786,045,669 |
root_title | "How to Create Animated Gifs with Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,677,358 |
net_rshares | 0 |
I am still learning it. I am practicing it but never posted. It is very hard. I have to familiarize & understand the commands. Thanks for the post another info.
author | marycres |
---|---|
permlink | re-makerhacks-how-to-create-animated-gifs-with-python-20180526t140622737z |
category | python |
json_metadata | {"tags":["python"],"app":"steemit/0.1"} |
created | 2018-05-26 13:47:21 |
last_update | 2018-05-26 13:47:21 |
depth | 1 |
children | 0 |
last_payout | 2018-06-02 13:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 141,098,523,921 |
root_title | "How to Create Animated Gifs with Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,802,260 |
net_rshares | 0 |