Compare commits

...

2 Commits

Author SHA1 Message Date
b8fc9376d5 add image compressor 2025-12-09 16:58:32 +08:00
aa1ab6ef13 update image to pdf 2025-12-09 15:14:11 +08:00
3 changed files with 1215 additions and 1 deletions

1200
image_compressor.html Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -582,7 +582,7 @@
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<h1>图片转PDF</h1> <h1>图片转PDF(纯前端,后台不保存数据)</h1>
<div class="main-content"> <div class="main-content">
<!-- 左侧面板 --> <!-- 左侧面板 -->

View File

@@ -502,6 +502,15 @@
<div class="tooltip">图片转PDF</div> <div class="tooltip">图片转PDF</div>
</div> </div>
<div class="tool-item" data-tool="image-compressor">
<div class="tool-icon">🗜️</div>
<div class="tool-info">
<h3>图片压缩</h3>
<p>在线压缩图片文件大小,支持质量调节和格式转换</p>
</div>
<div class="tooltip">图片压缩</div>
</div>
<div class="tool-item" data-tool="other"> <div class="tool-item" data-tool="other">
<div class="tool-icon">⚙️</div> <div class="tool-icon">⚙️</div>
<div class="tool-info"> <div class="tool-info">
@@ -618,6 +627,11 @@
url: "image_to_pdf.html", url: "image_to_pdf.html",
hash: "#image2pdf", hash: "#image2pdf",
}, },
"image-compressor": {
title: "图片压缩",
url: "image_compressor.html",
hash: "#image-compressor",
},
other: { other: {
title: "其他功能", title: "其他功能",
url: "other_function.html", url: "other_function.html",