An Illustrator Script (written in Javascript) for exporting artboards to Android and iOS PNG24 assets in the proper directory structure and scale types.
- Import the script into Illustrator CC
To include a script in the Scripts menu (File > Scripts), save the script in the Scripts folder, located in the
/lllustrator CC/Presets
folder in your lllustrator CC installation directory. The script’s filename, minus the file extension, appears in the Scripts menu. Scripts that you add to the Scripts folder while Illustrator is running do not appear in the Scripts menu until the next time you launch Illustrator.
- Open the Illustrator file that includes the artboards you want to export.
- Select this script from the Illustrator Scripts menu.
- Choose the directory where you want the images to be exported to.
- A dialog with the supported scale types will open. If any Android types are selected, it's directory will be created inside
/Android/{SCALE_TYPE}
(e.g./Android/drawable-mdpi
,/Android/drawable-xhdpi
). Any iOS types will be placed in/iOS
.
The name of the exported images will match the name of the artboard. If the artboard is named app-icon
, and you select all the available options, the script will export the artboard into the following directory structure:
Selected Directory
├───Android
│ ├───drawable-mdpi
│ │ └───app-icon.png
│ ├───drawable-hdpi
│ │ └───app-icon.png
│ ├───drawable-xhdpi
│ │ └───app-icon.png
│ ├───drawable-xxhdpi
│ │ └───app-icon.png
│ ├───drawable-xxxhdpi
│ │ └───app-icon.png
└───iOS
├───app-icon.png
├───app-icon@2x.png
└───app-icon@3x.png
The baseline image used for Android is xhdpi
, for iOS it is @2x
. The script will scale up and down from these sizes.
Copyright 2016 Austyn Mahoney
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.