-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from image-rs/project-pages
Add simple content for each project.
- Loading branch information
Showing
12 changed files
with
126 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: project | ||
name: "image-canvas" | ||
title: "Image Canvas" | ||
weight: 10 | ||
crates_io: "https://crates.io/crates/image-canvas" | ||
crates_io_badge: "https://img.shields.io/crates/v/image-canvas.svg" | ||
github: "https://github.com/image-rs/canvas" | ||
docs: "https://docs.rs/image-canvas" | ||
docs_badge: "https://docs.rs/image-canvas/badge.svg" | ||
--- | ||
|
||
A fairly experimental project aiming to provide a generic buffer for image | ||
formats that avoids reallocation and reinitialization overheads. Contrary to | ||
buffers from the standard library, such as `Vec`, some common operations are | ||
(nearly) zero overhead instead of linear complexity. Most importantly the | ||
transmutation into a different pixel with the same underlying sample type | ||
avoids allocations while being strictly safe. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: project | ||
name: "gif" | ||
title: "Gif" | ||
weight: 700 | ||
crates_io: "https://crates.io/crates/gif" | ||
crates_io_badge: "https://img.shields.io/crates/v/gif.svg" | ||
github: "https://github.com/image-rs/image-gif" | ||
docs: "https://docs.rs/gif" | ||
docs_badge: "https://docs.rs/gif/badge.svg" | ||
--- | ||
|
||
The `gif` is an image format on the web that is nearly a synonym for | ||
animations, the moving equivalent of the `PNG`. It is one of the oldest formats | ||
to gain widespread support among most browser vendors. While the current trend | ||
is towards `webm` and other technologies it remains widely used (although | ||
rarely lauded for surviving so long). | ||
|
||
The `image` library offers generic support for it by default while the direct | ||
usage of the crate allows a more nuanced usage of the decoding and encoding | ||
settings. The code can make use of the NeuQuant algorithm to quickly generate | ||
fairly well compressed palettes. The decoding can also be stream input data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: project | ||
name: "png" | ||
title: "Png" | ||
weight: 800 | ||
crates_io: "https://crates.io/crates/png" | ||
crates_io_badge: "https://img.shields.io/crates/v/png.svg" | ||
github: "https://github.com/image-rs/image-png" | ||
docs: "https://docs.rs/png" | ||
docs_badge: "https://docs.rs/image/png.svg" | ||
--- | ||
|
||
Offers a `png` decoder and encoder. Furthermore maps some general parts of the | ||
file format itself to allow for the kind of customization intended as rationale | ||
for the format specification. It is also integrated into the `image` crate to | ||
offer its benefit in a more general setting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: project | ||
name: "tiff" | ||
title: "Tiff" | ||
weight: 700 | ||
crates_io: "https://crates.io/crates/tiff" | ||
crates_io_badge: "https://img.shields.io/crates/v/tiff.svg" | ||
github: "https://github.com/image-rs/image-tiff" | ||
docs: "https://docs.rs/tiff" | ||
docs_badge: "https://docs.rs/tiff/badge.svg" | ||
--- | ||
|
||
A decoder and encoder for the `tiff` file format. It is also integrated into | ||
the `image` crate to offer its benefit in a more general setting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
layout: project | ||
name: "imageproc" | ||
weight: 100 | ||
crates_io: "https://crates.io/crates/imageproc" | ||
crates_io_badge: "https://img.shields.io/crates/v/imageproc.svg" | ||
github: "https://github.com/image-rs/imageproc" | ||
docs: "https://docs.rs/imageproc" | ||
docs_badge: "https://docs.rs/imageproc/badge.svg" | ||
--- | ||
|
||
The `imageproc` project contains advanced generic image manipulation routines | ||
from conversion, transformation to computer vision components. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
name: "image-canvas" | ||
--- | ||
|
||
A fairly experimental project aiming to provide a generic buffer for image | ||
formats that avoids reallocation and reinitialization overheads. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
name: "gif" | ||
--- | ||
|
||
A decoder and encoder for the `gif` file format which still enjoys widespread | ||
usage on the web. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
name: "png" | ||
--- | ||
|
||
Decoder and encoder for the widespread `png` format. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
name: "tiff" | ||
--- | ||
|
||
A decoder and encoder for the `tiff` file format. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
name: "imageproc" | ||
--- | ||
|
||
Advanced generic image manipulation routines from conversion, transformation to | ||
computer vision components. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters