答案是不會 ◢▆▅▄▃ 崩╰(〒皿〒)╯潰▃▄▅▆◣
簡單來說,Zenphoto不會更動相片裡面的中繼資訊(metadata),那麼他是怎麼管理這些資料呢?
1. 上傳照片時,將這些metatdata存入MySQL資料庫
其中images這個table存了大部分的metadata,標籤(tags)是另外存在tags這個table,並在obj_to_tag將tags與imges連結,例如小編現在有3個tags,分別為RED、BLUE、GREEN,那我如果要將一張藍天的照片加上BLUE的tag,那麼obj_to_tag就會新增一列(藍天,BLUE)這個連結(實際上是以照片ID、標籤ID儲存)
2. 在後台修改照片說明、標籤,是更改MySQL資料庫的內容,所以就不會動到原始照片囉!
那有沒有辦法將MySQL資料庫的資料寫回照片?
答案是可以的!小編利用python寫了簡單的程式,可以從MySQL擷取想要回存的內容,並利用exiftool這個程式修改照片的中繼資料,程式碼如下:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import MySQLdb | |
import commands | |
albumid = 3 | |
rootpath = "/Library/WebServer/Documents/zenphoto-zenphoto-1.4.14/albums" | |
db = MySQLdb.connect(host="localhost", user="zpadmin", passwd="PASSWORD", db="zenphoto") | |
cursor = db.cursor() | |
cursor.execute("select folder from albums where id=" + str(albumid)) | |
folderpath=cursor.fetchall()[0][0] | |
cursor.execute("select id,filename,`desc`,IPTCImageCaption from images where albumid=" + str(albumid)) | |
r = cursor.fetchall() | |
for row in r: | |
imgid = row[0] | |
imgpath = rootpath+"/"+folderpath+"/"+row[1] | |
imgdesc = row[2] | |
imgiptccaption = row[3] | |
cursor.execute("select GROUP_CONCAT(`name` separator ', ') from tags where id in (select tagid from obj_to_tag where objectid=" + str(imgid) + ")") | |
imgkeywords = cursor.fetchall()[0][0] | |
if imgkeywords: | |
if imgdesc.rfind(":\"") != -1: | |
imgdesc = imgdesc[imgdesc.rfind(":\"")+2:imgdesc.rfind("\";}")] | |
if imgdesc: | |
cmd = "exiftool -sep \", \" -directory=iptctool_update -IPTC:Keywords=\"" + imgkeywords + "\" -IPTC:Caption-Abstract=\"" + imgdesc + "\" " + imgpath | |
else: | |
cmd = "exiftool -sep \", \" -directory=iptctool_update -IPTC:Keywords=\"" + imgkeywords + "\" " + imgpath | |
print cmd | |
print commands.getstatusoutput(cmd)[1] |
0 意見:
張貼留言