Skip to content

options

Spirit edited this page Dec 14, 2019 · 7 revisions

主题v3.3.3之后,内置了manifest生成工具,使用python3实现,可生成封面图所需文件,详见这里

目录及文件说明

.
├── manifest
│   ├── gallary           // 存放原图片
│   ├── jpeg              // 存放生成的缩略图
│   ├── webp              // 存放转换后的封面图
│   ├── manifest.json     // 生成的manifest数据
│   ├── manifest.py       // manifest主程序
│   ├── qt.py             // manifest GUI程序(开发中)
│   ├─── __init__.py      // GUI程序初始化文件
│   └── icon.*            // GUI素材文件

食用方法:

安装依赖

安装 Python: https://docs.python.org/zh-cn/3.7/using/index.html

安装 PIL、requests:

# Linux/Mac Terminal
pip install Pillow requests
# 如果也安装了 Python 2,需要指定 pip 版本:
pip3 install Pillow requests

# Windows Powershell 或者 CMD
pip install Pillow requests
# 如果也安装了 Python 2,需要指定 pip 版本:
pip3 install Pillow requests
# 如果提示权限不足([WinError 5] Access is denied),请运行:
pip install Pillow requests --user

运行

把图片文件放到 gallary 目录,Windows 可直接双击 manifest.py,或者和其他操作系统一样,在 Terminal、Powershell、CMD 中运行:

# 切换到 manifest.py 所在目录:
cd /path/to/manifest/
python manifest.py
# 如果也安装了 Python 2,需要指定 Python 版本:
python3 manifest.py

之后根据提示操作即可,程序会生成封面图,并且manifest.json会上传至WordPress后台存入数据库。

rest api url 示例:https://sakura.2heng.xin/wp-json/sakura/v1/database/update

manifest.json 存入WordPress数据库后,将 manifest 整个文件夹上传至你的cdn,并在 后台-Sakura主题设置-CDN-封面图图片库 处填写url,最后不用加斜杠

eg. manifest的地址是 https://cdn.jsdelivr.net/gh/mashirozx/sakura@3.3.3/manifest/,只需在后台填写 https://cdn.jsdelivr.net/gh/mashirozx/sakura@3.3.3

Cii-tFxA-giIQsvlAAExfDgNXqsAATNegC2BwkAATGU717.jpg

Clone this wiki locally