python challenge 16

來源:互聯網
上載者:User

標籤:

前情回顧:上一篇

第16關地址

開啟16關,又是一張奇奇怪怪很多點點的圖片,應該又是與PIL庫有關的.

頁面的標題是:let me get this straight。這是英語中的一句俚語,意思是讓我把這事搞清楚.在這一關中其實是讓我們把每一行像素位置調整後對其.

看這幅圖片,很多紅色的點,於是想到是不是這些點的像素有什麼特別,將每一行的像素值列印出來後發現每一行都有連續的5個像素的值為195.

然後把每一行的像素移位,像素值195的移到最左邊,然後對其就得到了新的圖片.如下:

即下一關的url.

代碼如下:

 1 import urllib.request as ur 2 from PIL import Image 3  4 def main(): 5     im = Image.open("mozart.gif") 6     (width,height) = im.size 7     mode = im.mode           8     print(mode) 9     print(im.size)10 11     imAnswer = Image.new(mode,(width,height)) 12 13     for y in range(height):14         pixels = [im.getpixel((x,y)) for x in range(width)]15         print(pixels)16         17         x = pixels.index(195)18         newpixels = pixels[x:width] + pixels[:x]19 20         for x in range(width):21             imAnswer.putpixel((x,y),newpixels[x])22 23     imAnswer.save(‘16Answer.gif‘)24         25 26 if __name__ == ‘__main__‘:27     main()

 

python challenge 16

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.