Photopshop can auto divide an image into slices, however it can not
divide 256 boxes, so I had to format my output to first be sliced into
4 boxes of 8 x 8 characters.
Here's the program to poke the characters to the screen
in a 32 columns x 8 rows. A white shell is provided so that the
photoshop image could be cropped exactly at the character space.
Please include this program in the emulators.
REM AQUARIUS ASCII Imager
for x = 1 to 1000: next x
new
1 REM AQUARIUS ASCII Imager
4 poke 12288, 255 :rem create solid border
5 d=12327 : mod = 1024 : B=12288+ mod : cd=0
12 rows =40 : rem start drawing at line 2
15 poke b,7 : rem a white border
550 for a=0 to 255
560 n=a
1280 columns=columns+1
1285 poke (1+cd+d+columns+rows), a
1290 poke (cd+b+columns+rows+40),7
1350 if columns = 8 then columns = 0 : rows = rows+40
1440 if rows > 320 then rows = 40: cd=cd+8
2200 next a
3000 if inkey$<>" " then goto 3000
REM Init Here
Colmax = 8
REM rem bell clear screen
print chr$(7): print chr$(11)
run