我下载了这个脚本来帮助我转换一些PNG。然而,从2003年开始,我第一次尝试运行它,它给了我异常语法的错误。我设法修复了它并再次运行它。然后它给了我打印语法的错误。我也修好了。现在我完全不知道除了脚本不工作之外还有什么。
脚本是:
from struct import *
from zlib import *
import stat
import sys
import os
def getNormalizedPNG(filename):
pngheader = "\x89PNG\r\n\x1a\n"
file = open(filename, "rb")
oldPNG = file.read()
file.close()
if oldPNG[:8] != pngheader:
return None
newPNG = oldPNG[:8]
chunkPos = len(newPNG)
# For each chunk in the PNG file
while chunkPos < len(oldPNG):
# Reading chunk
chunkLength = oldPNG[chunkPos:chunkPos+4]
chunkLength = unpack(">L", chunkLength)[0]
chunkType = oldPNG[chunkPos+4 : chunkPos+8]
chunkData = oldPNG[chunkPos+8:chunkPos+8+chunkLength]
chunkCRC = oldPNG[chunkPos+chunkLength+8:chunkPos+chunkLength+12]
chunkCRC = unpack(">L", chunkCRC)[0]
chunkPos += chunkLength + 12
# Parsing the header chunk
if chunkType == "IHDR":
width = unpack(">L", chunkData[0:4])[0]
height = unpack(">L", chunkData[4:8])[0]
# Parsing the image chunk
if chunkType == "IDAT":
try:
# Uncompressing the image chunk
bufSize = width * height * 4 + height
chunkData = decompress( chunkData, -8, bufSize)
except Exception as e:
# The PNG image is normalized
return None
# Swapping red & blue bytes for each pixel
newdata = ""
for y in xrange(height):
i = len(newdata)
newdata += chunkData[i]
for x in xrange(width):
i = len(newdata)
newdata += chunkData[i+2]
newdata += chunkData[i+1]
newdata += chunkData[i+0]
newdata += chunkData[i+3]
# Compressing the image chunk
chunkData = newdata
chunkData = compress( chunkData )
chunkLength = len( chunkData )
chunkCRC = crc32(chunkType)
chunkCRC = crc32(chunkData, chunkCRC)
chunkCRC = (chunkCRC + 0x100000000) % 0x100000000
# Removing CgBI chunk
if chunkType != "CgBI":
newPNG += pack(">L", chunkLength)
newPNG += chunkType
if chunkLength > 0:
newPNG += chunkData
newPNG += pack(">L", chunkCRC)
# Stopping the PNG file parsing
if chunkType == "IEND":
break
return newPNG
def updatePNG(filename):
data = getNormalizedPNG(filename)
if data != None:
file = open(filename, "wb")
file.write(data)
file.close()
return True
return data
def getFiles(base):
global _dirs
global _pngs
if base == ".":
_dirs = []
_pngs = []
if base in _dirs:
return
files = os.listdir(base)
for file in files:
filepath = os.path.join(base, file)
try:
st = os.lstat(filepath)
except os.error:
continue
if stat.S_ISDIR(st.st_mode):
if not filepath in _dirs:
getFiles(filepath)
_dirs.append( filepath )
elif file[-4:].lower() == ".png":
if not filepath in _pngs:
_pngs.append( filepath )
if base == ".":
return _dirs, _pngs
print ("iPhone PNG Images Normalizer v1.0")
print (" ")
print ("[+] Searching PNG files..."),
dirs, pngs = getFiles(".")
print ("ok")
if len(pngs) == 0:
print (" ")
print ("[!] Alert: There are no PNG files found. Move this python file to the folder that contains the PNG files to normalize.")
exit()
print (" ")
print (" - %d PNG files were found at this folder (and subfolders).") % len(pngs)
print (" ")
while True:
normalize = raw_input("[?] Do you want to normalize all images (Y/N)? ").lower()
if len(normalize) > 0 and (normalize[0] == "y" or normalize[0] == "n"):
break
normalized = 0
if normalize[0] == "y":
for ipng in xrange(len(pngs)):
perc = (float(ipng) / len(pngs)) * 100.0
print ("%.2f%% %s") % (perc, pngs[ipng])
if updatePNG(pngs[ipng]):
normalized += 1
print (" ")
print ("[+] %d PNG files were normalized.") % normalized
现在,当我在DOS窗口中运行它时,我收到此错误:
C:\wamp\www\py>ipin.py
iPhone PNG Images Normalizer v1.0
[+] Searching PNG files...
ok
- %d PNG files were found at this folder (and subfolders).
Traceback (most recent call last):
File "C:\wamp\www\py\ipin.py", line 158, in <module>
print (" - %d PNG files were found at this folder (and subfolders).") % len(pngs)
TypeError: unsupported operand type(s) for %: 'NoneType' and 'int'
我该怎么办?
答案 0 :(得分:5)
您可能希望在括号内移动%
运算符。
print (" - %d PNG files were found at this folder (and subfolders)." % len(pngs))
答案 1 :(得分:1)
在Python 2中,普通字符串文字是字节串,而在Python 3中它们是Unicode字符串。如果要编写字节字符串文字,请使用b
前缀,例如B “\ x89PNG \ r \ n \ X1A \ n” 个。在将字节串与Unicode字符串混合时,Python 3是严格的。
其他不同之处在于,在Python 3中,print
现在是一个普通函数,而不是一个语句,range
函数返回一个生成器,如Python 2中的xrange
,以及{ {1}}与Python 2中的input
类似(Python 3中没有Python 2的raw_input
函数 - 因为它被认为是不安全的而被删除了。)
这是我尝试将代码翻译成Python 3(顺便提一下,使用input
是不鼓励的,因为它可能会无意中隐藏许多名称;只导入您想要使用的名称):
from something import *
答案 2 :(得分:-1)
尝试%str(len(pngs))时会发生什么?