摘要: // 修改文本图层内容的Photoshop脚本 // 用法:在Photoshop中执行此脚本,输入要修改的图层名称和新的文本内容 // 定义一个函数来修改文本图层 function modifyTextLayer(layerName, newText) { // 获取当前活动文档 var doc = 阅读全文
posted @ 2025-11-11 13:19 露娜喵喵 阅读(1) 评论(0) 推荐(0)
摘要: pip下载很慢 怎么换成阿里云镜像 windows server设置 C:\Users\Administrator\AppData\Roaming\pip 新建pip文件夹,里面放pip.ini文件 内容填写 [global] timeout = 6000 index-url = http://mi 阅读全文
posted @ 2025-08-18 11:22 露娜喵喵 阅读(14) 评论(0) 推荐(0)
摘要: // app/Command/QueueWorker.php 队列工作器 <?php namespace app\Command; use app\Service\QueueService; use think\console\Command; use think\console\Input; us 阅读全文
posted @ 2025-06-21 18:42 露娜喵喵 阅读(102) 评论(0) 推荐(0)
摘要: import cv2 import numpy as np from pyzbar.pyzbar import decode import sys def is_overlap(rect1, rect2): """ 判断两个矩形区域是否重叠 :param rect1: 第一个矩形区域,格式为 (x1 阅读全文
posted @ 2025-04-27 10:04 露娜喵喵 阅读(60) 评论(0) 推荐(0)
摘要: 球球了,复制别人的代码一定要做单元测试!!!跑了大半年的代码,2024年12月30日凌晨崩了!!!心态都炸了!!! 代码参考链接:https://www.php.cn/faq/502532.html 有bug啊 有bug啊 下面为执行正常示例和异常示例 <?php $firstDayThisMont 阅读全文
posted @ 2025-01-03 17:46 露娜喵喵 阅读(228) 评论(1) 推荐(0)
摘要: const package = require('../package'); const fs = require('fs'); const opentype = require('opentype.js'); function findUnsupportedChars(fontPath, text 阅读全文
posted @ 2024-10-12 11:05 露娜喵喵 阅读(78) 评论(0) 推荐(0)
摘要: 使用了Python的Pillow库 import sys from PIL import Image Image.MAX_IMAGE_PIXELS = 2000000000 def convert_image_to_jpg(input_path, output_path, dpi=300, colo 阅读全文
posted @ 2024-05-30 11:57 露娜喵喵 阅读(489) 评论(0) 推荐(0)
摘要: 为了让这个函数更加灵活以支持任意大小的图片和不同的分割大小,我们可以将函数的参数稍作调整,使其接受目标分割尺寸(targetSize)作为参数,而不是硬编码为10000。同时,我们可以使用整数除法(//)来确保分割的尺寸是整数,并且使用模数运算符(%)来检查是否需要进行最后一次不完全的分割。 以下是 阅读全文
posted @ 2024-05-07 09:26 露娜喵喵 阅读(15) 评论(0) 推荐(0)
摘要: convert: error while loading shared libraries: libMagickCore-7.Q16HDRI.so.10: cannot open shared object file: No such file or directory 执行 ldconfig /u 阅读全文
posted @ 2024-04-18 11:58 露娜喵喵 阅读(114) 评论(0) 推荐(0)
摘要: puppeteer/.local-chromium/linux-1002410/chrome-linux/chrome: error while loading shared libraries: libXdamage.so.1: cannot open shared object file: No 阅读全文
posted @ 2024-04-17 13:14 露娜喵喵 阅读(434) 评论(0) 推荐(0)