Skip to content

Commit ed805b5

Browse files
committed
logo edit
1 parent 698c957 commit ed805b5

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

TetraPlex_Rainbow_Dots.py

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
from Python_BMP.BITMAPlib import(
1616
newBMP,
17-
plotstringasdots as f,
17+
plotitalicstringasdots as f,
1818
getcolorname2RGBdict,
19-
font8x8thin,
19+
font8x8sanserif,
2020
getfuncmetastr as meta,
2121
saveBMP
2222
)
@@ -35,16 +35,11 @@ def main():
3535
f(bmp, 20, 10, # position the text
3636
'TetraPlex', # random text
3737
7, # uint font size multiplier
38-
1, # uint space between pixels
38+
0, # uint space between pixels
3939
0, # uint default space between char
40-
(c['brightred'],
41-
c['brightorange'],
42-
c['brightyellow'],
43-
c['brightgreen'],
44-
c['cyan'],
45-
c['brightblue'],
46-
c['brightmagenta']),
47-
font8x8thin)
40+
(c['yellow'],
41+
c['brightyellow']),
42+
font8x8sanserif)
4843
file = f'HelloWorldRainbow{f.__name__}.bmp' #file name
4944
saveBMP(file, bmp)
5045
print('Saved to %s in %s\nAll done close %s to finish' % \

0 commit comments

Comments
 (0)