mazha's profileA New AgePhotosBlogListsMore Tools Help

Blog


    2/13/2006

    [PC_11] odd even

    网格状的图片,无提示,
    不过 title 已经足够了,按奇偶把像素分开么,
    写代码还是花了些功夫,对 PIL 不熟悉:(
     

    [code]

     
     import Image
     import ImageDraw
     
     pic = Image.open('cave.jpg')
     im1 = Image.new("RGB", (640, 480), 0)
     im2 = Image.new("RGB", (640, 480), 0)
     
     for i in range(0, 640 * 480):
         if ( i%640 + i/640 ) % 2:
             im1.putpixel(((i/2)%320, i/640 ), pic.getpixel((i%640, i/640)))
         else :
             im2.putpixel(((i/2)%320, i/640 ), pic.getpixel((i%640, i/640)))
     
     im1.save('PC_11_1.png')
     im2.save('PC_11_2.png')
     

     
    得到两张图片,一张没什么东西,另一张血红背景,右上角四个暗黄色的字母 —— evil
     

    Comments (3)

    Please wait...
    Sorry, the comment you entered is too long. Please shorten it.
    You didn't enter anything. Please try again.
    Sorry, we can't add your comment right now. Please try again later.
    To add a comment, you need permission from your parent. Ask for permission
    Your parent has turned off comments.
    Sorry, we can't delete your comment right now. Please try again later.
    You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
    Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
    Complete the security check below to finish leaving your comment.
    The characters you type in the security check must match the characters in the picture or audio.

    To add a comment, sign in with your Windows Live ID (if you use Hotmail, Messenger, or Xbox LIVE, you have a Windows Live ID). Sign in


    Don't have a Windows Live ID? Sign up

    Picture of Anonymous
    frank chen wrote:
    ~\o/~
     
    你很投入:)
    Feb. 13
    mazha 李响wrote:
    被发现了 -.-~
    Feb. 13
    Picture of Anonymous
    frank chen wrote:
    你通宵了。。。。=.=
    Feb. 13

    Trackbacks

    The trackback URL for this entry is:
    http://bg5hfc.spaces.live.com/blog/cns!E67CCF4FFB0BE86!1147.trak
    Weblogs that reference this entry
    • None