forked from akkana/gimp-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
save-export-clean.py
executable file
·78 lines (65 loc) · 2.47 KB
/
save-export-clean.py
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
#!/usr/bin/env python
# Save or export the current image -- do the right thing whether it's
# XCF (save) or any other format (export). This will mark the image clean,
# so GIMP won't warn you when you exit.
# Warning: this does not show a lot of extra dialogs, etc. or warn you
# if you're about to overwrite something! Use with caution.
# Copyright 2012 by Akkana Peck, http://www.shallowsky.com/software/
# You may use and distribute this plug-in under the terms of the GPL v2
# or, at your option, any later GPL version.
from gimpfu import *
import gtk
import os
import collections
def python_export_clean(img, drawable) :
filename = img.filename
if not filename :
chooser = gtk.FileChooserDialog(title=None,
action=gtk.FILE_CHOOSER_ACTION_SAVE,
buttons=(gtk.STOCK_CANCEL,
gtk.RESPONSE_CANCEL,
gtk.STOCK_OPEN,
gtk.RESPONSE_OK))
# Might want to set a current folder:
save_dir = choose_likely_save_dir()
if save_dir :
chooser.set_current_folder(save_dir)
# Oh, cool, we could have shortcuts to image folders,
# and maybe remove the stupid fstab shortcuts GTK adds for us.
#chooser.add_shortcut_folder(folder)
#chooser.remove_shortcut_folder(folder)
response = chooser.run()
if response != gtk.RESPONSE_OK:
return
filename = chooser.get_filename()
img.filename = filename
chooser.destroy()
pdb.gimp_file_save(img, drawable, filename, filename)
pdb.gimp_image_clean_all(img)
def choose_likely_save_dir() :
counts = collections.Counter()
for img in gimp.image_list() :
if img.filename :
counts[os.path.dirname(img.filename)] += 1
try :
return counts.most_common(1)[0][0]
except :
return None
register(
"python_fu_export_clean",
"Save or export the current image, then mark it clean.",
"Save or export the current image, then mark it clean.",
"Akkana Peck",
"Akkana Peck",
"2012",
"Save/Export clean",
"*",
[
(PF_IMAGE, "image", "Input image", None),
(PF_DRAWABLE, "drawable", "Input drawable", None),
],
[],
python_export_clean,
menu = "<Image>/File/Save/"
)
main()