PIL and pygame.image

前端 未结 2 481
忘掉有多难
忘掉有多难 2020-12-04 01:55

I had opened an image using PIL, as

image = Image.open(\"SomeImage.png\")

Draw some text on it, as

draw = ImageDraw.Draw(i         


        
2条回答
  •  囚心锁ツ
    2020-12-04 02:34

    You could use the fromstring() function from pygame.image. The following should work, according to the documentation:

    image = Image.open("SomeImage.png")
    draw = ImageDraw.Draw(image)
    draw.text(Some parameters here)
    
    mode = image.mode
    size = image.size
    data = image.tostring()
    
    this_image = pygame.image.fromstring(data, size, mode)
    

提交回复
热议问题