Plots.jl: Generating a gif with collection of images

Created on 10 Feb 2017  路  3Comments  路  Source: JuliaPlots/Plots.jl

Hi, I wonder if I can generate a gif by using a couple of images rather than plots by using Plots.jl. If possible, could you point where can I find an example on the documentation. Thanks.

Most helpful comment

All 3 comments

julia> using FileIO, TestImages

julia> img = testimage("mandrill");

julia> img2 = flipdim(img, 1);

julia> save("flipping.gif", cat(3, img, img2))

@timholy Is there a way to specify the time for per image ? I mean, in this version, I cannot fallow the images, they changes so fast and I'd like to make transaction slower.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

PallHaraldsson picture PallHaraldsson  路  4Comments

Cody-G picture Cody-G  路  4Comments

Cody-G picture Cody-G  路  3Comments

tbenst picture tbenst  路  3Comments

GravityAssisted picture GravityAssisted  路  5Comments