Metadata-Version: 2.1
Name: android-asset-generator
Version: 1.0.5
Summary: A simple android assets generator
Home-page: https://pypi.org/project/android-asset-generator/
Author: Alejandro Pascual
Author-email: alex_paz_5599@hotmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: python-resize-image

# android-asset-generator
___
## Description
android-assset-generator is a command line program for generate ldpi, mdpi, hdpi, xhdpi, xxhdpi and xxxhdpi density images for your Android Studio Project.
___
## Requeriments
* python-resize-image [View package](https://pypi.org/project/python-resize-image/)
___

## Installing
       pip install android-asset-generator
___

## Usage
* Prepare a folder that contains only the images you want to convert to the different densities or may be a single image file.
* Run the following command.

       android-asset-generator  path   density

Argument | Description | Examples
---------|------------ | -----------
path     | Full path string of your asset folder or asset file (png or jpg). Set "this" if your console current workspace is the asset folder. If your path contains spaces, use quotation marks ( " ). Example: "C:\Users\MyUser\Pictures\Camera Roll\pp.jpg" | C:\Users\MyUser\Desktop\img or C:\Users\MyUser\Desktop\img\image1.png
density  | The source density. If your images are mdpi, put mdpi as argument | ldpi, mdpi, hdpi, xhdpi, xxhdpi or xxxhdpi

> **Note:** Preferably do not change the order of the arguments.


* The generated images will be saved in different folders within the specified path following the Android Studio standard:
        drawable-ldpi
        drawable-mdpi
        drawable-hdpi
        drawable-xhdpi
        drawable-xxhdpi
        drawable-xxxhdpi

* The source images will be moved to the corresponding folder without having suffered alterations.
* The last step is to import the generated folders to your Android Studio. project
___

## Examples
        android-asset-generator C:\Users\MyUser\Desktop\img xhdpi
> The asset folder path is C:\Users\MyUser\Desktop\img and asset density is xhdpi

        android-asset-generator "C:\Users\MyUser\Pictures\Camera Roll\pp.jpg"  xhdpi
> The file path contains spaces in between, so quotes are used to make it a single string

        android-asset-generator this
> The asset folder path is the console current directory and asset density is hdpi by default
___

## Compatibility
Operating System | Test Results
-|-
Windows 10 | Passed
MacOS | Testing
Linux | No tested

Your test results are welcome!
___
## GitHub Repository
[android-asset-generator](https://github.com/AlexPascual/android-asset-generator)

You are welcome if you want to colaborate!
___
## Licence
The project is licensed under the MIT License


