- 新增 SystemNotification 模型,实现系统通知的数据存储 - 管理后台新增通知相关接口,支持通知的增删改查 - 用户端新增接口,获取最新激活通知并支持标记已读 - 在前端首页添加全局通知弹窗,实现通知自动轮询及已读同步 - 生成历史记录中兼容支持图片缩略图及新旧图片格式 - 优化后台图片同步逻辑,新增缩略图生成与存储 - 支持上传参考图的拖拽、粘贴、多文件上传及排序功能 - 增加购买积分页面入口及菜单项,调整菜单结构 - 日志系统由 Redis 列表迁移为有序集合,保留 30 天日志 - 优化日志页面样式,提升可读性及滚动体验 - 调整部分模板布局为自定义滚动条容器,增强视觉一致性
85 lines
2.1 KiB
Python
85 lines
2.1 KiB
Python
#
|
|
# The Python Imaging Library.
|
|
# $Id$
|
|
#
|
|
# DCX file handling
|
|
#
|
|
# DCX is a container file format defined by Intel, commonly used
|
|
# for fax applications. Each DCX file consists of a directory
|
|
# (a list of file offsets) followed by a set of (usually 1-bit)
|
|
# PCX files.
|
|
#
|
|
# History:
|
|
# 1995-09-09 fl Created
|
|
# 1996-03-20 fl Properly derived from PcxImageFile.
|
|
# 1998-07-15 fl Renamed offset attribute to avoid name clash
|
|
# 2002-07-30 fl Fixed file handling
|
|
#
|
|
# Copyright (c) 1997-98 by Secret Labs AB.
|
|
# Copyright (c) 1995-96 by Fredrik Lundh.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
from __future__ import annotations
|
|
|
|
from . import Image
|
|
from ._binary import i32le as i32
|
|
from ._util import DeferredError
|
|
from .PcxImagePlugin import PcxImageFile
|
|
|
|
MAGIC = 0x3ADE68B1 # QUIZ: what's this value, then?
|
|
|
|
|
|
def _accept(prefix: bytes) -> bool:
|
|
return len(prefix) >= 4 and i32(prefix) == MAGIC
|
|
|
|
|
|
##
|
|
# Image plugin for the Intel DCX format.
|
|
|
|
|
|
class DcxImageFile(PcxImageFile):
|
|
format = "DCX"
|
|
format_description = "Intel DCX"
|
|
_close_exclusive_fp_after_loading = False
|
|
|
|
def _open(self) -> None:
|
|
# Header
|
|
assert self.fp is not None
|
|
s = self.fp.read(4)
|
|
if not _accept(s):
|
|
msg = "not a DCX file"
|
|
raise SyntaxError(msg)
|
|
|
|
# Component directory
|
|
self._offset = []
|
|
for i in range(1024):
|
|
offset = i32(self.fp.read(4))
|
|
if not offset:
|
|
break
|
|
self._offset.append(offset)
|
|
|
|
self._fp = self.fp
|
|
self.frame = -1
|
|
self.n_frames = len(self._offset)
|
|
self.is_animated = self.n_frames > 1
|
|
self.seek(0)
|
|
|
|
def seek(self, frame: int) -> None:
|
|
if not self._seek_check(frame):
|
|
return
|
|
if isinstance(self._fp, DeferredError):
|
|
raise self._fp.ex
|
|
self.frame = frame
|
|
self.fp = self._fp
|
|
self.fp.seek(self._offset[frame])
|
|
PcxImageFile._open(self)
|
|
|
|
def tell(self) -> int:
|
|
return self.frame
|
|
|
|
|
|
Image.register_open(DcxImageFile.format, DcxImageFile, _accept)
|
|
|
|
Image.register_extension(DcxImageFile.format, ".dcx")
|