diff options
author | Genny <gen@nyble.dev> | 2022-11-25 19:08:14 -0600 |
---|---|---|
committer | Genny <gen@nyble.dev> | 2022-11-25 19:08:14 -0600 |
commit | 9c9c04015d1dcc79ac27d1e903ce36a35e5c2dcf (patch) | |
tree | 1ec2c8511321067f75bb63f4d5ce670dca7104bd | |
parent | 080f6297f28a9800186376742827de60d17e6160 (diff) | |
download | gifed-9c9c04015d1dcc79ac27d1e903ce36a35e5c2dcf.tar.gz gifed-9c9c04015d1dcc79ac27d1e903ce36a35e5c2dcf.zip |
hide gif-frames. it's not ready yet
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | README.md | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index e1ad110..7817057 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ Cargo.lock *.gif *.txt *.png -**/examples/read \ No newline at end of file +**/examples/read +/gif-frames \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 7f7e92d..62aa458 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [workspace] members = [ "gifed", + "gif-frames", "gifprobe", "giftool" ] \ No newline at end of file diff --git a/README.md b/README.md index f2c625f..339407b 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,6 @@ These are part of the 89a spec, but are kept separate as they're not "core" to t [gif89a]: https://www.w3.org/Graphics/GIF/spec-gif89a.txt [netscape]: http://www.vurdalakov.net/misc/gif/netscape-looping-application-extension -## gif-frames -GIF Frames helps you manage the weird disposal methods that the Graphic Control Extension introduced. Also provides Indexed -> Rgb/Rgba conversion. - ## gifprobe Similar to FFMPEG's ffprobe, gifprobe will print details of a gif to stdout. |