1 Star 0 Fork 2

devil233/kkp-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
modify_image.py 974 Bytes
一键复制 编辑 原始数据 按行查看 历史
所有二刺螈都得死 提交于 2024-07-24 15:17 . 优化
from PIL import Image
import random
import sys
def add_random_pixels(image_path):
image = Image.open(image_path)
# 仅在必要时进行模式转换
if image.mode not in ['RGB', 'RGBA']:
image = image.convert('RGB')
pixels = image.load()
width, height = image.size
random_pixel_count = random.randint(10, 60)
for _ in range(random_pixel_count):
x = random.randint(0, width - 1)
y = random.randint(0, height - 1)
color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)) # RGB颜色
pixels[x, y] = color
output_path = image_path.replace('.jpg', '_modified.jpg')
# 确保输出为RGB模式
if image.mode == 'RGBA':
image = image.convert('RGB')
image.save(output_path)
return output_path
if __name__ == '__main__':
input_image_path = sys.argv[1]
output_image_path = add_random_pixels(input_image_path)
print(output_image_path)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/devil233/kkp-plugin.git
git@gitee.com:devil233/kkp-plugin.git
devil233
kkp-plugin
kkp-plugin
master

搜索帮助