添加参考线

#!/usr/bin/env python2
# -*- coding: utf-8 -*- from gimpfu import * # orientation: ORIENTATION_HORIZONTAL(0), ORIENTATION_VERTICAL(1)
# diff: 参考线之间的间隔
def add_multi_guides(img, drawable, orientation, diff):
# img = gimp.image_list()[0]
# uri = img.uri
w, h = img.width, img.height
endposition = None
add_guide = None if orientation == ORIENTATION_HORIZONTAL:
assert diff < h, 'diff too big'
endposition = h
add_guide = pdb.gimp_image_add_hguide
elif orientation == ORIENTATION_VERTICAL:
assert diff < w, 'diff too big'
endposition = w
add_guide = pdb.gimp_image_add_vguide
else:
raise ValueError(('orientation not valid: {0}').format(orientation)) # 清空原来的参考线
guide = pdb.gimp_image_find_next_guide(img, 0)
while guide != 0:
if orientation == pdb.gimp_image_get_guide_orientation(img, guide):
pdb.gimp_image_delete_guide(img, guide)
guide = 0
guide = pdb.gimp_image_find_next_guide(img, guide) position = diff
while position < endposition:
add_guide(img, position)
position = position + diff register(
"add_multi_guides",
# table snippet means a small piece of HTML code here
"Add fucking guides",
"long description",
"hangj",
"hangj",
"2020",
"Add Multi Guides...",
"*",
[
(PF_IMAGE, "img", "Input image", None),
(PF_DRAWABLE, "drawable", "Input drawable", None),
(PF_OPTION, "orientation", "orientation", 0, ("HORIZONTAL", "VERTICAL")),
(PF_INT, "diff", "pixcels between guides", 1000)
],
[],
add_multi_guides,
menu="<Image>/Image/Guides"
) main()

一键切分图片

一键切分的代码是把我上面添加参考线的代码与 GIMP 内 py-slice.py 合并在一起的。

其实更优的做法是直接复制一份 py-slice.py 换个文件名,然后修改 get_guides 函数(通过用户给的参数直接生成参考线坐标,而不需要真的添加参考线然后再读取参考线的坐标)

#!/usr/bin/env python2
# -*- coding: utf-8 -*- import os from gimpfu import *
import os.path gettext.install("gimp20-python", gimp.locale_directory, unicode=True) # orientation: ORIENTATION_HORIZONTAL(0), ORIENTATION_VERTICAL(1)
# diff: 参考线之间的间隔
def add_multi_guides(img, orientation, diff):
w, h = img.width, img.height
endposition = None
add_guide = None if orientation == ORIENTATION_HORIZONTAL:
assert diff < h, 'diff too big'
endposition = h
add_guide = pdb.gimp_image_add_hguide
elif orientation == ORIENTATION_VERTICAL:
assert diff < w, 'diff too big'
endposition = w
add_guide = pdb.gimp_image_add_vguide
else:
raise ValueError(('orientation not valid: {0}').format(orientation)) # 清空原来的参考线
guide = pdb.gimp_image_find_next_guide(img, 0)
while guide != 0:
if orientation == pdb.gimp_image_get_guide_orientation(img, guide):
pdb.gimp_image_delete_guide(img, guide)
guide = 0
guide = pdb.gimp_image_find_next_guide(img, guide) position = diff
while position < endposition:
add_guide(img, position)
position = position + diff def pyslice(image, drawable, orientation, diff, save_path,
image_basename, image_extension,
image_path): add_multi_guides(image, orientation, diff) vert, horz = get_guides(image) if len(vert) == 0 and len(horz) == 0:
return gimp.progress_init(_("Equally Slice"))
progress_increment = 1 / ((len(horz) + 1) * (len(vert) + 1))
progress = 0.0 def check_path(path):
path = os.path.abspath(path) if not os.path.exists(path):
os.mkdir(path) return path save_path = check_path(save_path) if not os.path.isdir(save_path):
save_path = os.path.dirname(save_path) image_relative_path = ''
image_path = save_path top = 0 for i in range(0, len(horz) + 1):
if i == len(horz):
bottom = image.height
else:
bottom = image.get_guide_position(horz[i]) left = 0 for j in range(0, len(vert) + 1):
if j == len(vert):
right = image.width
else:
right = image.get_guide_position(vert[j])
if (
(len(horz) >= 2 and (i == 0 or i == len(horz) )) or
(len(vert) >= 2 and (j == 0 or j == len(vert) ))
):
skip_stub = True
else:
skip_stub = False slice (image, None, image_path,
image_basename, image_extension,
left, right, top, bottom, i, j, "") left = right progress += progress_increment
gimp.progress_update(progress) top = bottom def slice(image, drawable, image_path, image_basename, image_extension,
left, right, top, bottom, i, j, postfix):
if postfix:
postfix = "_" + postfix
src = "%s_%d_%d%s.%s" % (image_basename, i, j, postfix, image_extension)
filename = os.path.join(image_path, src) if not drawable:
temp_image = image.duplicate()
temp_drawable = temp_image.active_layer
else:
if image.base_type == INDEXED:
#gimp_layer_new_from_drawable doesn't work for indexed images.
#(no colormap on new images)
original_active = image.active_layer
image.active_layer = drawable
temp_image = image.duplicate()
temp_drawable = temp_image.active_layer
image.active_layer = original_active
temp_image.disable_undo()
#remove all layers but the intended one
while len (temp_image.layers) > 1:
if temp_image.layers[0] != temp_drawable:
pdb.gimp_image_remove_layer (temp_image, temp_image.layers[0])
else:
pdb.gimp_image_remove_layer (temp_image, temp_image.layers[1])
else:
temp_image = pdb.gimp_image_new (drawable.width, drawable.height,
image.base_type)
temp_drawable = pdb.gimp_layer_new_from_drawable (drawable, temp_image)
temp_image.insert_layer (temp_drawable) temp_image.disable_undo()
temp_image.crop(right - left, bottom - top, left, top)
if image_extension == "gif" and image.base_type == RGB:
pdb.gimp_image_convert_indexed (temp_image, CONVERT_DITHER_NONE,
CONVERT_PALETTE_GENERATE, 255,
True, False, False)
if image_extension == "jpg" and image.base_type == INDEXED:
pdb.gimp_image_convert_rgb (temp_image) pdb.gimp_file_save(temp_image, temp_drawable, filename, filename) gimp.delete(temp_image)
return src class GuideIter:
def __init__(self, image):
self.image = image
self.guide = 0 def __iter__(self):
return iter(self.next_guide, 0) def next_guide(self):
self.guide = self.image.find_next_guide(self.guide)
return self.guide def get_guides(image):
vguides = []
hguides = [] for guide in GuideIter(image):
orientation = image.get_guide_orientation(guide) guide_position = image.get_guide_position(guide) if guide_position > 0:
if orientation == ORIENTATION_VERTICAL:
if guide_position < image.width:
vguides.append((guide_position, guide))
elif orientation == ORIENTATION_HORIZONTAL:
if guide_position < image.height:
hguides.append((guide_position, guide)) def position_sort(x, y):
return cmp(x[0], y[0]) vguides.sort(position_sort)
hguides.sort(position_sort) vguides = [g[1] for g in vguides]
hguides = [g[1] for g in hguides] return vguides, hguides register(
"equally-slice",
N_("Cuts an image equally, creates images"),
"""Cuts an image equally, creates images""",
"hangj",
"hangj",
"2020",
_("_Equally Slice..."),
"*",
[
(PF_IMAGE, "image", "Input image", None),
(PF_DRAWABLE, "drawable", "Input drawable", None),
(PF_OPTION, "orientation", "orientation", 0, ("HORIZONTAL", "VERTICAL")),
(PF_INT, "diff", "pixcels every piece", 1000),
(PF_DIRNAME, "save-path", _("Path for images"), os.getcwd()),
(PF_STRING, "image-basename", _("Image name prefix"), "equallyslice"),
(PF_RADIO, "image-extension", _("Image format"), "jpg", (("gif", "gif"), ("jpg", "jpg"), ("png", "png"))),
(PF_STRING, "relative-image-path", _("Folder for image export"), "images"),
],
[],
pyslice,
menu="<Image>/Filters/Web",
domain=("gimp20-python", gimp.locale_directory)
) main()

把脚本保存,放到 plug-ins 目录下,然后chmod +x filename,重启 GIMP,设置快捷键

plug-ins 目录在哪?



快捷键怎么设置?



输入 equally 找到我们的脚本

然后自行设置

GIMP 一键均匀添加多条参考线 一键均匀切分图片的更多相关文章

  1. lnmp一键安装环境添加redis扩展及作为mysql的缓存

    lnmp一键安装环境添加redis扩展 Redis-benchmark      压力测试工具Redis-check-aof      检查redis持久化命令文件的完整性Redis-check-du ...

  2. JS每点击一次添加多少条数据

    很久不写文档,平时只写日记,所以对这个有点生疏,如果写的不好别介意. 今天闲的蛋疼,于是要写写白天的东西,并且以后也会一直更新(一直写)下去. 时间太仓促了,这几个月,今天算最晚的一次凌晨1点,吃不消 ...

  3. mybatis+oracle添加一条数据并返回所添加数据的主键问题

    最近做mybatis+oracle项目的时候解决添加一条数据并返回所添加数据的主键问题 controller层 @RequestMapping("/addplan") public ...

  4. QTableView 添加进度条

    记录一下QTableView添加进度条 例子很小,仅供学习 使用QItemDelegate做的实现 有自动更新进度 要在.pro文件里添加 CONFIG += c++ ProgressBarDeleg ...

  5. struts2上传文件添加进度条

    给文件上传添加进度条,整了两天终于成功了. 想要添加一个上传的进度条,通过分析,应该是需要不断的去访问服务器,询问上传文件的大小.通过已上传文件的大小, 和上传文件的总长度来评估上传的进度. 实现监听 ...

  6. 新建一个DataTable如何手动给其添加多条数据!

    早晨起来,想起昨天利用winform做类似于sqlserver数据库导入数据功能的时候,用到了新建一个DataTable手动给其添加多条数据,平时用不到,需要的时候想不起来了,这次不妨把他记下来.以下 ...

  7. poj 3177 Redundant Paths【求最少添加多少条边可以使图变成双连通图】【缩点后求入度为1的点个数】

    Redundant Paths Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11047   Accepted: 4725 ...

  8. iOS viewController添加导航条以及返回跳转选择

    给单独的viewcontroller或者在Appdelegate的主页面添加导航条,只要在viewcontroller上添加navigationcontroller,在添加此navigationcon ...

  9. poj3352添加多少条边可成为双向连通图

    Road Construction Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 13311   Accepted: 671 ...

随机推荐

  1. Jmeter 学习笔记 1 - Logic Controller -组织执行场景

    using this website to practice performance testing: http://advantageonlineshopping.com/#/ Jemeter ho ...

  2. string子串匹配(用string自带函数,不涉及char数组转换)

    using namespace std; #include <iostream> #include<string> //第1种,用string自带的s.subdtr()截取任意 ...

  3. Tom_No_02 Servlet向流中打印内容,之后在调用finsihResponse,调用上是先发送了body,后发送Header的解释

    上次在培训班学上网课的时候就发现了这个问题,一直没有解决,昨天又碰到了,2-3小时也未能发现点端倪,今早又仔细缕了下,让我看了他的秘密 1.Servlet向流中打印内容,之后在调用finsihResp ...

  4. 终于彻底搞清楚了spin-lock 之一次CPU问题定位过程总结

    首先这个问题,我只是其中参与者之一.但这个问题很有参考意义,特记录下来. 还有我第一次用"彻底"这个词,不知道会不会有人喷?其实,还有一些问题,也不是特别清楚.比如说什么是CPU流 ...

  5. charles抓取https设置

    第一步:打开charles,查看电脑ip,手机设置代理(需要手机和电脑在同一网络) 手机下载证书不要用自带的下,会失败 1.查看电脑ip 2.手机设置代理,修改网络,保存 3.手机访问"看图 ...

  6. 20初识前端HTML(1)

    1 .HTML 1.1 网页的组成 文字 图片 链接 等元素构成.除了这些元素之外 网页中还可以包含音频 视频 等 1.2 WEB前端开发的流程 现在主流的开发流程: 前后端分离的开发模式. 美工:p ...

  7. 蓝凌OA前台任意文件读取漏洞利用

    近期CNVD爆出漏洞编号:CNVD-2021-28277,首次公开日期为2021-04-15,蓝凌oa存在多个漏洞,攻击者可利用该漏洞获取服务器控制权.今天挑选一个蓝凌OA前台任意文件读取漏洞进行分析 ...

  8. JUC学习笔记(一)

    1.什么是 JUC 1.1.JUC简介 在 Java 中,线程部分是一个重点,本篇文章说的 JUC 也是关于线程的.JUC 就是 java.util .concurrent 工具包的简称.这是一个处理 ...

  9. noip模拟35[第一次4题·裂了]

    noip模拟35 solutions 这是我第一次这么正式的考四个题,因为这四个题都出自同一个出题人,并不是拼盘拼出来的. 但是考得非常的不好,因为题非常难而且一直想睡觉.. 有好多我根本就不会的算法 ...

  10. 并发编程——synchronized关键字的使用

    前言 我们一般对共享数据操作的时候,为了达到线程安全我们会使用synchronized关键字去修饰方法或者代码块.那么今天我们就来讲一讲synchronized关键字的使用. 专栏推荐: 并发编程专栏 ...