Skip to content

Commit

Permalink
Created README.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Apr 13, 2017
1 parent c33e7b4 commit 4e03cb3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# PxlArtGenerator #

A light tool to convert images to pixel arts using the 16-colors palette available on [pxls.space](http://pxls.space).

## Requirements ##

Java **1.7+** is required to run the program.

## Download ##

A compiled version can be downloaded in the [releases](#) section.

## Usage ##

Usage: java -jar PxlArtGenerator.jar <source image> <output image> [options]
Options:
--help
Displays this menu
-height, -h
The output image height
-output-size
The size of the pixels on the output image
Default: 1
-palette, -p
The palette to be used to draw the output image; it must be in
hexadecimal
Default: 0123456789abcdef
-width, -w
The output image width
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>

<dependencies>
Expand Down

0 comments on commit 4e03cb3

Please sign in to comment.