├── .gitignore ├── LICENSE ├── README.md ├── java-version └── com │ └── scan │ └── CommandLine.java └── python-version ├── ScanTailor ├── scan_helper_jpg_brightness_contrast.py ├── scan_helper_jpg_resize_percentage.py └── scan_helper_png_monochrome.py ├── component └── remove_image_exif.py ├── scan_helper_jpg.py ├── scan_helper_png.py └── scan_helper_rename.py /.gitignore: -------------------------------------------------------------------------------- 1 | ### 不进行版本控制的文件及文件夹 2 | .DS_Store 3 | .localized 4 | target/ 5 | *.iml 6 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/README.md -------------------------------------------------------------------------------- /java-version/com/scan/CommandLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/java-version/com/scan/CommandLine.java -------------------------------------------------------------------------------- /python-version/ScanTailor/scan_helper_jpg_brightness_contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/ScanTailor/scan_helper_jpg_brightness_contrast.py -------------------------------------------------------------------------------- /python-version/ScanTailor/scan_helper_jpg_resize_percentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/ScanTailor/scan_helper_jpg_resize_percentage.py -------------------------------------------------------------------------------- /python-version/ScanTailor/scan_helper_png_monochrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/ScanTailor/scan_helper_png_monochrome.py -------------------------------------------------------------------------------- /python-version/component/remove_image_exif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/component/remove_image_exif.py -------------------------------------------------------------------------------- /python-version/scan_helper_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/scan_helper_jpg.py -------------------------------------------------------------------------------- /python-version/scan_helper_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/scan_helper_png.py -------------------------------------------------------------------------------- /python-version/scan_helper_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrer/scan-helper/HEAD/python-version/scan_helper_rename.py --------------------------------------------------------------------------------