Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

--export-png does not work anymore, with --export-type and --export-f… #534

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ echo "Exporting %source_file% ==> %new_file_png%"

:: IMPORTANT: Now actually call the exporter/converter here:
:: TODO: SET THE DESIRED HEIGHT/WIDTH HERE (currently 64 pixels):
"%1" "%2" --export-width=128 --export-height=128 --export-png="%new_file_png%"
"%1" "%2" --export-width=128 --export-height=128 --export-type=PNG --export-filename="%new_file_png%"

endlocal & goto :EOF

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ echo "Exporting %source_file% ==> %new_file_png%"

:: IMPORTANT: Now actually call the exporter/converter here:
:: TODO: SET THE DESIRED HEIGHT/WIDTH HERE (currently 64 pixels):
"%1" "%2" --export-width=256 --export-height=256 --export-png="%new_file_png%"
"%1" "%2" --export-width=256 --export-height=256 --export-type=PNG --export-filename="%new_file_png%"

endlocal & goto :EOF

Expand Down