添加参考线

#!/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. C++第三十四篇 -- 安装Windows Driver后,编译以前项目出现打不开lib文件

    VS2017默认是没有安装WDK的,但是我们写驱动文件的话需要用到WDK.不过安装了WDK后,发现以前一些正常的项目在Release模式下编译会报LINK1104,无法打开.lib的错误 针对这个错误 ...

  2. GetOverlappedResult 函数

    BOOL GetOverlappedResult( HANDLE hFile, LPOVERLAPPED lpOverlapped, LPDWORD lpNumberOfBytesTransferre ...

  3. Springboot通过过滤器实现对请求头的修改

    之前在一个项目中有一个API服务需要重构,尤其是接口的用户身份校验,原先的实现是将用户token放在URL请求参数中,然后通过AOP进行校验,现在要统一将token放在header中,但是这样修改会让 ...

  4. 攻防世界逆向——game

    攻防世界逆向:game wp 攻防世界逆向新手区的一道题目. 是一道windows的creak,动态调试打开是这样的: 题目说明是让屏幕上所有的图像都亮之后,会出现flag,看来应该是可以玩出来的. ...

  5. Java面向对象10——方法重写

    方法重写 static :  ​ ​ package oop.demon01.demon05; ​ public class Application {     public static void ...

  6. Java-Stream流方法学习及总结

    1 前言 Stream是一个来自数据源的元素队列并支持聚合操作,其中具有以下特性: Stream只负责计算,不存储任何元素,元素是特定类型的对象,形成一个队列 数据源可以实集合.数组.I/O chan ...

  7. 树莓派远程连接工具SSH使用教程

    树莓派远程连接工具SSH使用教程 树莓派 背景故事 树莓派作为一款迷你小主机,大部分的使用场景都会用到远程调试,远程调试用到最多的方式一般就是VNC和SSH,SSH就是命令行型的远程方式,简单来说就是 ...

  8. DVWA靶场之Brute Force(暴破)通关

    DVWA最经典PHP/MySQL老靶场,简单回顾一下通关流程吧 DVWA十大金刚,也是最常见的十种漏洞利用:Brute Force(暴破).Command Injection(命令行注入).CSRF( ...

  9. 【网络编程】TCPIP-7-域名与网络地址

    目录 前言 7. 域名与网络地址 7.1 IP 7.2 域名 7.3 DNS 7.4 IP地址与域名之间的转换 7.4.1 利用域名获取IP地址 7.4.2 利用IP地址获取域名 7.4.3 升级版的 ...

  10. mysql版本:'for the right syntax to use near 'identified by 'password' with grant option'

    查询mysql具体版本 SELECT @@VERSION 问题分析:mysql版本8.0.13,在给新用户授权时,发生了变化: 1064 - You have an error in your SQL ...