Page 1 of 1

Rotate text in DOS

Posted: 2012-04-25T06:54:50-07:00
by morrisproject
Hi can anyone help, i have an intrest in arcade games and looking to create a simple menu system but need to rotate the text.

C:\mame\menu.bat
:menu
@ECHO OFF
CLS
echo.
echo Welcom To Mame
echo.
echo 1. PACMAN
echo.
echo 2. MS PACMAN
echo.
echo Pick A Game (1 or 2) %1 %2
Choices /n/c:123
if errorlevel==2 goto 2
if errorlevel==1 goto 1
:One
Path=C:\
CD\MAME
DMAME PACMAN
Pause
Goto end

Re: Rotate text in DOS

Posted: 2012-04-25T19:56:22-07:00
by anthony
In what way does this relate to image processing, and ImageMagick specifically?

Re: Rotate text in DOS

Posted: 2012-04-26T13:40:35-07:00
by whugemann
I guess that you want to rotate text that DOS is echoing in the CMD box, right? There is no way of doing that, not even with the help of ImageMagick.