#!/usr/bin/python import Image, sys, os, glob type_list = {} type_list["type_A"] = {"horizontal": (415, 482), "vertical": (415, 482)} type_list["type_B"] = {"horizontal": (150, 133), "vertical": (150, 133)} type_list["type_C"] = {"horizontal": (600, 600), "vertical": (600, 600)} type_list["type_D"] = {"horizontal": (200, 200), "vertical": (200, 400)} OriginalDIR = "./psd/" CompleteDIR = "./complete/" LogoDIR = "./logo/" def openImg(file) : targetImage = […]