-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
40 additions
and
44 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 |
---|---|---|
|
@@ -9,8 +9,8 @@ ext { | |
libraryGroupName = 'com.tianscar.imageio' | ||
libraryVendorName = 'Tianscar' | ||
|
||
libraryVersionCode = 1 | ||
libraryVersionName = '1.0.0' | ||
libraryVersionCode = 2 | ||
libraryVersionName = '1.0.1' | ||
|
||
librarySourceCompatibility = JavaVersion.VERSION_1_8 | ||
libraryTargetCompatibility = JavaVersion.VERSION_1_8 | ||
|
@@ -51,7 +51,7 @@ publishing { | |
pom { | ||
name = libraryName | ||
description = 'Java ImageIO APNG Plug-in' | ||
url = 'https://github.com/Tianscar/apng-imageio' | ||
url = 'https://github.com/Tianscar/imageio-apng' | ||
licenses { | ||
license { | ||
name = 'GNU General Public License, version 2, with the Classpath Exception' | ||
|
@@ -66,9 +66,9 @@ publishing { | |
} | ||
} | ||
scm { | ||
connection = 'scm:git:[email protected]/Tianscar/apng-imageio.git' | ||
developerConnection = 'scm:git:[email protected]/Tianscar/apng-imageio.git' | ||
url = 'https://github.com/Tianscar/apng-imageio' | ||
connection = 'scm:git:[email protected]/Tianscar/imageio-apng.git' | ||
developerConnection = 'scm:git:[email protected]/Tianscar/imageio-apng.git' | ||
url = 'https://github.com/Tianscar/imageio-apng' | ||
} | ||
} | ||
} | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
rootProject.name = 'apng-imageio' | ||
rootProject.name = 'imageio-apng' | ||
|
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 |
---|---|---|
@@ -1,28 +1,24 @@ | ||
package com.tianscar.imageio.plugins.png; | ||
|
||
public final class PNG { | ||
public interface PNG { | ||
|
||
private PNG() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
int PNG_COLOR_GRAY = 0; | ||
int PNG_COLOR_RGB = 2; | ||
int PNG_COLOR_PALETTE = 3; | ||
int PNG_COLOR_GRAY_ALPHA = 4; | ||
int PNG_COLOR_RGB_ALPHA = 6; | ||
|
||
public static final int PNG_COLOR_GRAY = 0; | ||
public static final int PNG_COLOR_RGB = 2; | ||
public static final int PNG_COLOR_PALETTE = 3; | ||
public static final int PNG_COLOR_GRAY_ALPHA = 4; | ||
public static final int PNG_COLOR_RGB_ALPHA = 6; | ||
int PNG_FILTER_NONE = 0; | ||
int PNG_FILTER_SUB = 1; | ||
int PNG_FILTER_UP = 2; | ||
int PNG_FILTER_AVERAGE = 3; | ||
int PNG_FILTER_PAETH = 4; | ||
|
||
public static final int PNG_FILTER_NONE = 0; | ||
public static final int PNG_FILTER_SUB = 1; | ||
public static final int PNG_FILTER_UP = 2; | ||
public static final int PNG_FILTER_AVERAGE = 3; | ||
public static final int PNG_FILTER_PAETH = 4; | ||
int APNG_DISPOSE_OP_NONE = 0; | ||
int APNG_DISPOSE_OP_BACKGROUND = 1; | ||
int APNG_DISPOSE_OP_PREVIOUS = 2; | ||
|
||
public static final int APNG_DISPOSE_OP_NONE = 0; | ||
public static final int APNG_DISPOSE_OP_BACKGROUND = 1; | ||
public static final int APNG_DISPOSE_OP_PREVIOUS = 2; | ||
|
||
public static final int APNG_BLEND_OP_SOURCE = 0; | ||
public static final int APNG_BLEND_OP_OVER = 1; | ||
int APNG_BLEND_OP_SOURCE = 0; | ||
int APNG_BLEND_OP_OVER = 1; | ||
|
||
} |
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