You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromPILimportImage# Dimensões da nova imagemlargura=200altura=100# Cor de preenchimento da imagem (no formato RGB)cor= (255, 0, 0) # Vermelho# Criar uma nova imagem com a cor especificadanova_imagem=Image.new('RGB', (largura, altura), cor)
# Salvar a nova imagem como um arquivo PNGnova_imagem.save('nova_imagem.png')
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: