README.md
1 Recovery Image Generator
2 -------------------------
3
4 This program uses java.awt.Graphics2D to generate the background text files used
5 under recovery mode. And thus we don't need to do the manual work by running
6 emulators with different dpi.
7
8 # Usage:
9 `java -jar path_to_jar --image_width imageWidth --text_name textName --font_dir fontDirectory
10 --resource_dir resourceDirectory --output_file outputFilename`
11
12 # Description of the parameters:
13 1. `imageWidth`: The number of pixels per line; and the text strings will be
14 wrapped accordingly.
15 2. `textName`: The description of the text string, e.g. "recovery_erasing",
16 "recovery_installing_security"
17 3. `fontDirectory`: The directory that contains all the support .ttf | .ttc
18 files, e.g. $OUT/system/fonts/
19 4. `resourceDirectory`: The resource directory that contains all the translated
20 strings in xml format, e.g. bootable/recovery/tools/recovery_l10n/res/
21 5. `outputFilename`: Path to the generated image.
22