Skip to content

Latest commit

 

History

24 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Compressed Image Format

A simple image format for storing compressed layered images.

Authors

License

MIT

Features

  • Simple to use
  • Cross platform Library
  • Compression
  • Layers

FAQ


Usage/Examples

Create Image

CompressedImage newImage = new(800, 600, Color.Black);
CompressedImage imageFromBytes = new(File.ReadAllBytes("path/to/image.cif"));

Save Image

File.WriteAllBytes("path/to/image.cif", newImage.Compress());

Set Pixels

newImage.Layers[0].SetPixel(400, 300, Color.White);

Add Layers

newImage.Layers.Add(new(800, 600, Color.Gray) { Transparency = 127 });

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages