26 lines
306 B
Batchfile
26 lines
306 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
|
|
echo ==============================
|
|
echo Image Converter Tool
|
|
echo ==============================
|
|
echo.
|
|
|
|
REM
|
|
cd ..
|
|
|
|
REM
|
|
call venv\Scripts\activate.bat
|
|
|
|
REM
|
|
cd converter
|
|
|
|
echo Starting converter...
|
|
echo.
|
|
|
|
python converter.py
|
|
|
|
echo.
|
|
echo Conversion finished.
|
|
pause |