-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8aaccf4
commit 8484e9c
Showing
9 changed files
with
797 additions
and
35 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
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,55 @@ | ||
import _imagine | ||
|
||
|
||
/** | ||
* Actual image IS different | ||
*/ | ||
var CMP_IMAGE = _imagine.CMP_IMAGE | ||
|
||
|
||
/** | ||
* Number of colors in pallette differ | ||
*/ | ||
var CMP_NUM_COLORS = _imagine.CMP_NUM_COLORS | ||
|
||
|
||
/** | ||
* Image colors differ | ||
*/ | ||
var CMP_COLOR = _imagine.CMP_COLOR | ||
|
||
|
||
/** | ||
* Image width differs | ||
*/ | ||
var CMP_SIZE_X = _imagine.CMP_SIZE_X | ||
|
||
|
||
/** | ||
* Image heights differ | ||
*/ | ||
var CMP_SIZE_Y = _imagine.CMP_SIZE_Y | ||
|
||
|
||
/** | ||
* Transparent color differs | ||
*/ | ||
var CMP_TRANSPARENT = _imagine.CMP_TRANSPARENT | ||
|
||
|
||
/** | ||
* Background color differs | ||
*/ | ||
var CMP_BACKGROUND = _imagine.CMP_BACKGROUND | ||
|
||
|
||
/** | ||
* Interlaced setting differs | ||
*/ | ||
var CMP_INTERLACE = _imagine.CMP_INTERLACE | ||
|
||
|
||
/** | ||
* Truecolor vs palette differs | ||
*/ | ||
var CMP_TRUECOLOR = _imagine.CMP_TRUECOLOR |
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,31 @@ | ||
import _imagine | ||
|
||
|
||
/** | ||
* Same as CROP_TRANSPARENT | ||
*/ | ||
var CROP_DEFAULT = _imagine.CROP_DEFAULT | ||
|
||
|
||
/** | ||
* Crop using the transparent color | ||
*/ | ||
var CROP_TRANSPARENT = _imagine.CROP_TRANSPARENT | ||
|
||
|
||
/** | ||
* Crop black borders | ||
*/ | ||
var CROP_BLACK = _imagine.CROP_BLACK | ||
|
||
|
||
/** | ||
* Crop white borders | ||
*/ | ||
var CROP_WHITE = _imagine.CROP_WHITE | ||
|
||
|
||
/** | ||
* Crop using colors of the 4 corners | ||
*/ | ||
var CROP_SIDES = _imagine.CROP_SIDES |
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,26 @@ | ||
import _imagine | ||
|
||
/** | ||
* A small ISO-8859-2 raster font (5x8 pixels). | ||
*/ | ||
var FONT_SMALL = _imagine.tinyfont | ||
|
||
/** | ||
* The regular ISO-8859-2 raster font (6x13 pixels) | ||
*/ | ||
var FONT_REGULAR = _imagine.smallfont | ||
|
||
/** | ||
* A medium bold ISO-8859-2 raster font (7x13 pixels). | ||
*/ | ||
var FONT_MEDIUM = _imagine.mediumfont | ||
|
||
/** | ||
* A large ISO-8859-2 raster font (8x16 pixels). | ||
*/ | ||
var FONT_LARGE = _imagine.largefont | ||
|
||
/** | ||
* An extra-large ISO-8859-2 raster font (9x15 pixels). | ||
*/ | ||
var FONT_EXTRALARGE = _imagine.giantfont |
Oops, something went wrong.