Skip to content
/ jsin Public

JSIN (otherwise known as JavaScript Object Notation Image Notation, or JSON Image Notation) is a simple image format designed around JSON.

Notifications You must be signed in to change notification settings

Draylar/jsin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSIN (otherwise known as JavaScript Object Notation Image Notation, or JSON Image Notation) is a simple image format designed around JSON.

Here is a simple .jsin file that contains a single blue pixel:

{
  "width": 1,
  "height": 1,
  "pixels": [
    [
      {
        "x": 1,
        "y": 1,
        "color": {
          "r": 0.0,
          "g": 0.0,
          "b": 1.0,
          "a": 1.0
        }
      }
    ]
  ]
}

Usage

JSIN is easy to use, whether you interact with the CLI app as a user or API as a developer.

For Users

Convert a .jsin file to another image file type:

jsin to png apple.jsin

Convert a non-.jsin image file to .jsin:

jsin from apple.png

For Developers

Coming soon...

Why use JSIN?

Credits:

Fall Autumn Red Season Woods Image in test resources by Valiphotos from Pixabay

About

JSIN (otherwise known as JavaScript Object Notation Image Notation, or JSON Image Notation) is a simple image format designed around JSON.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages