- 新增 SystemNotification 模型,实现系统通知的数据存储 - 管理后台新增通知相关接口,支持通知的增删改查 - 用户端新增接口,获取最新激活通知并支持标记已读 - 在前端首页添加全局通知弹窗,实现通知自动轮询及已读同步 - 生成历史记录中兼容支持图片缩略图及新旧图片格式 - 优化后台图片同步逻辑,新增缩略图生成与存储 - 支持上传参考图的拖拽、粘贴、多文件上传及排序功能 - 增加购买积分页面入口及菜单项,调整菜单结构 - 日志系统由 Redis 列表迁移为有序集合,保留 30 天日志 - 优化日志页面样式,提升可读性及滚动体验 - 调整部分模板布局为自定义滚动条容器,增强视觉一致性
89 lines
2.2 KiB
Python
89 lines
2.2 KiB
Python
#
|
|
# The Python Imaging Library.
|
|
# $Id$
|
|
#
|
|
# sequence support classes
|
|
#
|
|
# history:
|
|
# 1997-02-20 fl Created
|
|
#
|
|
# Copyright (c) 1997 by Secret Labs AB.
|
|
# Copyright (c) 1997 by Fredrik Lundh.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
##
|
|
from __future__ import annotations
|
|
|
|
from . import Image
|
|
|
|
TYPE_CHECKING = False
|
|
if TYPE_CHECKING:
|
|
from collections.abc import Callable
|
|
|
|
|
|
class Iterator:
|
|
"""
|
|
This class implements an iterator object that can be used to loop
|
|
over an image sequence.
|
|
|
|
You can use the ``[]`` operator to access elements by index. This operator
|
|
will raise an :py:exc:`IndexError` if you try to access a nonexistent
|
|
frame.
|
|
|
|
:param im: An image object.
|
|
"""
|
|
|
|
def __init__(self, im: Image.Image) -> None:
|
|
if not hasattr(im, "seek"):
|
|
msg = "im must have seek method"
|
|
raise AttributeError(msg)
|
|
self.im = im
|
|
self.position = getattr(self.im, "_min_frame", 0)
|
|
|
|
def __getitem__(self, ix: int) -> Image.Image:
|
|
try:
|
|
self.im.seek(ix)
|
|
return self.im
|
|
except EOFError as e:
|
|
msg = "end of sequence"
|
|
raise IndexError(msg) from e
|
|
|
|
def __iter__(self) -> Iterator:
|
|
return self
|
|
|
|
def __next__(self) -> Image.Image:
|
|
try:
|
|
self.im.seek(self.position)
|
|
self.position += 1
|
|
return self.im
|
|
except EOFError as e:
|
|
msg = "end of sequence"
|
|
raise StopIteration(msg) from e
|
|
|
|
|
|
def all_frames(
|
|
im: Image.Image | list[Image.Image],
|
|
func: Callable[[Image.Image], Image.Image] | None = None,
|
|
) -> list[Image.Image]:
|
|
"""
|
|
Applies a given function to all frames in an image or a list of images.
|
|
The frames are returned as a list of separate images.
|
|
|
|
:param im: An image, or a list of images.
|
|
:param func: The function to apply to all of the image frames.
|
|
:returns: A list of images.
|
|
"""
|
|
if not isinstance(im, list):
|
|
im = [im]
|
|
|
|
ims = []
|
|
for imSequence in im:
|
|
current = imSequence.tell()
|
|
|
|
ims += [im_frame.copy() for im_frame in Iterator(imSequence)]
|
|
|
|
imSequence.seek(current)
|
|
return [func(im) for im in ims] if func else ims
|