Я программирую на Python 3.1 и использую PIL, которые обновляются для него, а также.
Теперь моя программа получает информацию с веб-страницы, и я хочу, чтобы эта информация отображалась на рисунке, который я уже получил, поэтому я использую переменную для этого, и это также часть, с которой мне нужна помощь.
То, на что я ссылаюсь, является частью моей программы (так как это более 100 строк, я просто показываю части, которые я нашел реальными для вопроса)
import webbrowser
import random
import urllib.request, urllib.parse, urllib.error
import re
import PIL
from PIL import Image, ImageFont, ImageDraw
arial16 = ImageFont.truetype ("arial.ttf", 16)
Z = (input ("What is the character name? "))
#The link which i get from my input info..
url = "http://"+X+".battle.net/wow/en/character/"+Y+"/"+Z+"/simple"
# Read the webpage
html = urllib.request.urlopen(url).read()
# Encoding
encoding = "utf-8"
html =html.decode (encoding)
# Find right class & choose background from it
cl = re.findall ('class="class">(.*)</a><span class="comma">,</span>', html)
if "Death Knight" : im = Image.open ("DeathKnightBackground.png")
elif "Druid" : im = Image.open ("DruidBackground.png")
elif "Hunter" : im = Image.open ("HunterBackground.png")
elif "Mage" : im = Image.open ("MageBackground.png")
elif "Paladin" : im = Image.open ("PaladinBackground.png")
elif "Priest" : im = Image.open ("PriestBackground.png")
elif "Rogue" : im = Image.open ("RogueBackground.png")
elif "Shaman" : im = Image.open ("ShamanBackground.png")
elif "Warlock" : im = Image.open ("WarlockBackground.png")
elif "Warrior" : im = Image.open ("WarriorBackground.png")
# Find the Title
title = re.findall('<div class="title">(.*)</div>', html)
# If i want to print this i just do
print (("Your Charactername with it's title:")+Z, title)
print (("You are:"),cl)
# Then i want to use a variable to save my picture
S = input("Please enter a name to save your forumsignature: ")
# When i want to draw the text to the picture i tried to use (+Z, title) as in the print
# function - but since this didn't work i will just go with ((+Z, title)) which don't give me
# syntax error
draw = ImageDraw.Draw ( im )
draw.text ( (20,20), ((+ Z, title)), font=arial16, fill="white")
# As i said before, i'm using variable S for saving and tried this way.. but in all the ways i
# have tried, i always keep getting syntax errors
im.save ((+S))
im.show ((+S))
Так кто-нибудь знает, способен ли PIL работать с переменными таким способом? или вы знаете какой-то другой способ рисования текста из переменных на изображении с python 3.1?
Очень рад за ответы, и я буду продолжать пытаться проверить все виды различных способов, которые я знаю, чтобы заставить это работать и опубликовать здесь, если я получу что-то для работы ...
// Забс