Possible Duplicate:
PPM image to ASCII art in Python

This is the updated code. I just need it to print the characters on the same line and break at the end

import sys

def main(filename):
  image = open(filename)
  #reads through the first three lines
  color = image.readline().splitlines()
  size_width, size_height = image.readline().split()
  max_color = image.readline().splitlines()

  #reads the body of the file
  pixels = image.read().split()
  red = 0
  green = 0
  blue = 0
  r_g_b_value = []
  #pulls out the values of each tuple and coverts it to its grayscale value 
  for i in pixels:
    if i !=  "\n" or " ":
        if len(i) == 3:
            red = int(i[0]) * .3
            green = int(i[1]) * .59
            blue = int(i[2]) * .11
        elif len(i) == 2:
            red == int(i[0])
            green == int(i[1])
            blue == 0
        elif len(i) == 1:
            red == int(i[0])
            green == 0
            blue == 0

        r_g_b_value = [red + green + blue]
        grayscale = []
        character = []

            for j in r_g_b_value:
            if int(j) <= .2:
                character = "M"
            elif int(j) > .2 and int(j) <= .4:
                character = "#"
            elif int(j) > .4 and int(j) <= .6:
                character = "A"
            elif int(j) > .6 and int(j) <= .8:
                character = "@"
            elif int(j) > .8 and int(j) <= 1:
                character = "$"
            elif int(j) > 1 and int(j) <= 1.2:
                character = "0"
            elif int(j) > 1.2 and int(j) <= 1.4:
                character = "e"
            elif int(j) > 1.4 and int(j) <= 1.6:
                character = "a"
            elif int(j) > 1.8 and int(j) <= 2:
                character = "o"
            elif int(j) > 2 and int(j) <= 2.2:
                character = "="
            elif int(j) > 2.25 and int(j) <= 2.5:
                character = "+"
            elif int(j) > 2.5 and int(j) <= 2.75:
                character = ";"
            elif int(j) > 2.75 and int(j) <= 3:
                character = ":"
            elif int(j) > 3 and int(j) <= 3.4:
                character = ","
            elif int(j) > 3.4 and int(j) <= 3.9:
                character = "."
            else:
                character = " "

                                                                                                       character += character
            grayscale = [character]
            print(grayscale)

main(sys.argv[1])

link|improve this question
I got it the error to work but does anyone have an idea on how to print this out with the correct dimensions – asmith Sep 12 '11 at 3:52
you should update the code segment – Foo Bah Sep 12 '11 at 3:59
I have it printing but it is only print one character per line, how would I go about putting the characters on the same line – asmith Sep 12 '11 at 4:29
feedback

closed as exact duplicate by Foo Bah, Jim Ferrans, Lennart Regebro, Dan Short, Robert Harvey Sep 12 '11 at 20:31

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

I'm guessing the error stems from:

        for j in len(r_g_b_value):

(len returns an int).

You probably want to say

        for j in r_g_b_value
link|improve this answer
Yes, if you want a range you need to use range() or xrange(). – syrion Sep 12 '11 at 3:28
1  
@syrion you are correct if the goal is to iterate through all values, but in context it doesnt make sense to use range... – Foo Bah Sep 12 '11 at 3:29
True. I shouldn't be on SO at midnight. – syrion Sep 12 '11 at 3:30
@syrion for me its a form of procrastination (that makes me feel somewhat productive) – Foo Bah Sep 12 '11 at 3:32
I have it printing now but I am wondering you have any thoughts on print the character where it would preserve the image? – asmith Sep 12 '11 at 3:39
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.