Skip to content

Commit

Permalink
Merge pull request #42 from tomwijgers/fix-help
Browse files Browse the repository at this point in the history
Fix help messages.
  • Loading branch information
patrickfav authored Oct 14, 2024
2 parents fb13f66 + c1aae93 commit 59f7e78
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,21 +108,21 @@ Full list of arguments:
-roundingMode <round|ceil|floor> Defines the rounding mode when scaling the dimensions. Possible
options are 'round' (rounds up of >= 0.5), 'floor' (rounds down) and
'ceil' (rounds up). Default is ROUND_HALF_UP
-scale <[float]|[int]dp> The source. Can be an image file or a folder containing image files
to be converted. This argument is mandatory.
-scaleIsHeightDp If set and scale is in dp it will be interpreted as fixed height not
width
-skipExisting If set will not overwrite a already existing file
-skipUpscaling If set will only scale down, but not up to prevent image quality
loss
-src <path to file or folder> The source scale. This can either be a factor (1,1.5,2,3,4,etc.)
-scale <[float]|[int]dp> The source scale. This can either be a factor (1,1.5,2,3,4,etc.)
used if the images already have the correct resolution for one scale
factor and up- and downscaling for all other densities are needed.
Ie. if you have the src file in density xxxhdpi you pass '4'. You
could also pass a value in dp (density independent pixels) which
denotes the output pixel width (or height if the flag is set) in
mdpi/x1. In this mode all output images will have the same width
(height). This argument is mandatory.
-scaleIsHeightDp If set and scale is in dp it will be interpreted as fixed height not
width
-skipExisting If set will not overwrite a already existing file
-skipUpscaling If set will only scale down, but not up to prevent image quality
loss
-src <path to file or folder> The source. Can be an image file or a folder containing image files
to be converted. This argument is mandatory.
-threads <1-8> Sets the count of max parallel threads (more is faster but uses more
memory). Possible values are 1-8. Default is 4
-v,--version Gets current version
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/bundles/strings.properties
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ arg.descr.cmd.threads=Sets the count of max parallel threads (more is faster but
arg.descr.cmd.platform=Can be ''all'', ''android'', ''ios'', ''win'' or ''web''. Sets what formats the converted images will be generated for. E.g. set ''android'' if you only want to convert to android format. Default is {0}
arg.descr.scalingalgo=Sets the scaling algorithm for either up- ord downscaling. Unfortunately there is no 'perfect' scaling algorithm it always depends on the specific use. Scaling is always a compromise between aliasing, blurring and ringing. Usually Lanczos3 is considered very good for up and downscaling, but for icons with sharp edges progressive algorithms may be better for downscaling.
arg.descr.cmd.dst=The directory in which the converted files will be written. Will use the source folder if this argument is omitted.
arg.descr.cmd.src=The source scale. This can either be a factor (1,1.5,2,3,4,etc.) used if the images already have the correct resolution for one scale factor and up- and downscaling for all other densities are needed. Ie. if you have the src file in density xxxhdpi you pass '4'. You could also pass a value in dp (density independent pixels) which denotes the output pixel width (or height if the flag is set) in mdpi/x1. In this mode all output images will have the same width (height). This argument is mandatory.
arg.descr.cmd.scale=The source. Can be an image file or a folder containing image files to be converted. This argument is mandatory.
arg.descr.cmd.scale=The source scale. This can either be a factor (1,1.5,2,3,4,etc.) used if the images already have the correct resolution for one scale factor and up- and downscaling for all other densities are needed. Ie. if you have the src file in density xxxhdpi you pass '4'. You could also pass a value in dp (density independent pixels) which denotes the output pixel width (or height if the flag is set) in mdpi/x1. In this mode all output images will have the same width (height). This argument is mandatory.
arg.descr.cmd.src=The source. Can be an image file or a folder containing image files to be converted. This argument is mandatory.
arg.descr.btnsrcfolder=Select a source folder for batch converting
arg.descr.btndstfolder=Select the destination folder where the scaled image will be created
arg.descr.btnsrcFile=Select the source image file to scale
Expand Down

0 comments on commit 59f7e78

Please sign in to comment.