-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout_anymulti.py
More file actions
214 lines (170 loc) · 8.6 KB
/
layout_anymulti.py
File metadata and controls
214 lines (170 loc) · 8.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/usr/bin/env python
#
# -------------------------------------------------------------------------------------
#
# Copyright (c) 2015, Edwin T. Tumbaga
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# - Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# - Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation and/or
# other materials provided with the distribution.
# - Neither the name of the author nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific prior
# written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
import os
import sys
import copy
from gimpfu import *
from datetime import datetime
def layout(img, layer, picture_size, paper_size, outputFolder):
''' Make multiple copies of a selected size of a square ID picture.
Parameters:
img : image The current image.
layer : layer The layer of the image that is selected.
outputFolder : string The folder in which save the modified images.
'''
#gimp.message("Picture Size: " + str(picture_size))
#gimp.message("Paper Size: " + str(paper_size))
paper = {0:'4R',1:'5R',2:'A4'}
picture = {0:'1 x 1',1:'1.5 x 1.5',2:'2 x 2',3:'PH Passport'}
paper_size = paper[paper_size]
picture_size = picture[picture_size]
gimp.message("Picture Size: " + str(picture_size))
gimp.message("Paper Size: " + str(paper_size))
# Generate filename
prefix = "doublespace_image"
extension = ".jpg"
filedate = datetime.now().strftime("%Y%m%d_%H%M%S")
file = prefix + "_" + filedate + extension
# Get original image height and width
img_height = pdb.gimp_image_height(img)
img_width = pdb.gimp_image_width(img)
paper_sizes = {'4R':{'width':1200,'height':1800},'5R':{'width':1500,'height':2100},'A4':{'width':2481,'height':3507}}
picture_sizes = {'1 x 1':{'width':300,'height':300}, '1.5 x 1.5':{'width':450,'height':450}, '2 x 2':{'width':600,'height':600},'PH Passport':{'width':411,'height':531}}
#img_resolution_x = picture_sizes[picture_size]['width']
#img_resolution_y = picture_sizes[picture_size]['height']
img_resolution_x = 600
img_resolution_y = 600
# If image is not up to spec, return an error message.
# Image must be a perfect square
# Image should be at least 600x600 pixels (for a 2x2 picture)
if img_height != img_width:
passport_ratio = round(531/411.0,2)
ratio = img_height * 1.0 / img_width
ratio = round(ratio, 2)
if ratio == passport_ratio:
gimp.message("Image is a PH passport!")
else:
gimp.message("Image size is not processable!")
return
elif img_height < img_resolution_y:
gimp.message("Minimum size should be" + str(img_resolution_x) + " X " + str(img_resolution_y) + " pixels")
return
#Some variables used throughout
RGB = 0
canvass_width = paper_sizes[paper_size]['width']
canvass_height = paper_sizes[paper_size]['height']
copy_width = picture_sizes[picture_size]['width']
copy_height = picture_sizes[picture_size]['height']
copy_interval = 50
current_position_x = copy_interval + 50
current_position_y = copy_interval
try:
# Create output path and filename
outputPath = outputFolder + "\\" + file
# Make copies of the original image.
# This is so that the original image remains unmodified all throughout the processing
img_copy = copy_orig_picture(img,layer)
# PROCESS image sizes
img_copy = resize_picture(img_copy,copy_width, copy_height)
# Make the picture canvass. This is where we will do all the dirty work.
canvass = None
canvass = pdb.gimp_image_new(canvass_width,canvass_height,RGB)
#Create duplicates of the processed (resized) images
while (1):
layer = duplicate_picture(img_copy,canvass,current_position_x, current_position_y,copy_width,copy_height,"duplicate")
current_position_x = current_position_x + pdb.gimp_drawable_width(layer) + copy_interval
if current_position_x > canvass_width - (copy_width + copy_interval):
current_position_x = copy_interval + 50
current_position_y = current_position_y + copy_height + copy_interval
if current_position_y > canvass_height - (copy_height + copy_interval):
gimp.message("Reached maximum number of drawings!")
break
pdb.gimp_image_flatten(canvass)
pdb.gimp_image_set_resolution(canvass, img_resolution_x, img_resolution_y)
if(file.lower().endswith(('.png'))):
pdb.file_png_save(canvass, canvass.layers[0], outputPath, outputPath, 0, 9, 0, 0, 0, 0, 0)
if(file.lower().endswith(('.jpeg', '.jpg'))):
pdb.file_jpeg_save(canvass, canvass.layers[0], outputPath, outputPath, 0.9, 0, 0, 0, "Creating with GIMP", 0, 0, 0, 0)
#Display resulting image
display = pdb.gimp_display_new(canvass)
#gimp.message("Success!")
except Exception as err:
gimp.message("Unexpected error: " + str(err))
# Function to copy the original image
def copy_orig_picture(image, layer):
img_width = pdb.gimp_image_width(image)
img_height = pdb.gimp_image_height(image)
image_copy = pdb.gimp_image_new(img_width,img_height, 0)
layer_copy = pdb.gimp_layer_new(image_copy,img_width,img_height,0,"default",100,0)
pdb.gimp_image_add_layer(image_copy,layer_copy, -1)
pdb.gimp_edit_copy(layer)
selection = pdb.gimp_edit_paste(layer_copy,-1)
pdb.gimp_floating_sel_anchor(selection)
#display = pdb.gimp_display_new(image_copy)
return image_copy
# Function to resize the original image to the appropriate width / height (2x2 or 1x1)
def resize_picture(orig_image, new_width, new_height):
resized = pdb.gimp_image_scale(orig_image, new_width, new_height)
return orig_image
# Function to make additional copies of the resized images
def duplicate_picture(orig_image, canvass_image, xpos, ypos,img_width, img_height, name):
layer = pdb.gimp_layer_new(canvass_image,img_width,img_height,0,name,100,0)
pdb.gimp_image_add_layer(canvass_image,layer,-1)
pdb.gimp_selection_all(orig_image)
pdb.gimp_edit_copy(orig_image.layers[0])
selection = pdb.gimp_edit_paste(layer,-1)
pdb.gimp_floating_sel_anchor(selection)
pdb.gimp_layer_set_offsets(layer,xpos,ypos)
return layer
from os.path import expanduser
folder = expanduser("~") + "\\Desktop\\doublespace"
if not os.path.exists(folder):
os.makedirs(folder)
register(
"python_fu_multilayout",
"Multi any",
"Make multiple copies of a square ID picture",
"ETT",
"Open source (BSD 3-clause license)",
"2015",
"<Image>/Filters/DoubleSpace/ID Custom Sizes",
"*",
[
(PF_OPTION, "picture_size" ,("Picture Size: "), 0 ,["1 x 1", "1.5 x 1.5", "2 x 2", "PH Passport"]),
(PF_OPTION, "paper_size" ,("Paper Size: "), 0 ,["4R", "5R", "A4"]),
#(PF_OPTION, "file_type" ,("File type: "), 0 ,[".jpg", ".png", ".tif", ".pcx", ".xcf", ("all registered formats")]),
#(PF_DIRNAME, "inputFolder", "Input directory", ""),
(PF_DIRNAME, "outputFolder", "Output directory", folder),
#(PF_SLIDER, "maskRadius", "Mask radius", 7, (1,50,1)),
#(PF_SLIDER, "blackPct", "Percentage of dark" , 0.2, (0.0,1.0,0.01))
],
[],
layout)
main()