success, had to fill in a few blanks with some more googling, here is
the finished script (used all for loops this time, saved a few more
lines):
==
#!/usr/local/bin/python
import string
import Image, ImageDraw
size = 2
im = Image.new("1",[8*size,8*size],1)
draw = ImageDraw.Draw(im)
Wonderful, thank you! Will try them out this evening.
The image module syntax looks more like what I was expecting than
TKinter. All the online drawing examples I found yesterday used
TKinter; image was only shown to manipulate pre-made images.
Larry
--
http://mail.python.org/mailman/listinfo/p
On Jun 29, 4:47 pm, Lie <[EMAIL PROTECTED]> wrote:
> On Jun 29, 11:18 am, [EMAIL PROTECTED] wrote:
>
>
>
> > Ok I'm a Python noob, been doing OK so far, working on a data
> > conversion program and want to create some character image files from
> > an 8-bit ROM file.
>
> > Creating the image I've g
On Jun 29, 11:18 am, [EMAIL PROTECTED] wrote:
> Ok I'm a Python noob, been doing OK so far, working on a data
> conversion program and want to create some character image files from
> an 8-bit ROM file.
>
> Creating the image I've got down, I open the file and use TK to draw
> the images... but
>
>