码迷,mamicode.com
首页 > 其他好文 > 详细

一张包含所有颜色的图片

时间:2021-01-27 13:07:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:dex   包含   position   z-index   height   game   code   ati   port   

图片:
技术图片

 

 使用pygame编写的代码

源代码:

import pygame
pygame.init()
canvas=pygame.Surface((4096,4096))

rgb=[0,0,0]
x_y=[0,0]
for r in range(256):
    rgb[2]=0
    rgb[1]=0
    for g in range(256):
        rgb[2]=0
        for b in range(256):
            pygame.draw.rect(canvas,rgb, (x_y,(1,1)) )
            print(rgb)
            x_y[0]+=1
            if x_y[0]>4096:
                x_y[0]=0
                x_y[1]+=1
            rgb[2]=rgb[2]+1
        rgb[1]+=1

    rgb[0]+=1

pygame.image.save(canvas,"color.jpg")

 

技术图片
 

一张包含所有颜色的图片

标签:dex   包含   position   z-index   height   game   code   ati   port   

原文地址:https://www.cnblogs.com/Ctrl-cCtrl-v/p/14327340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!