nagose commited on
Commit
70d122d
·
verified ·
1 Parent(s): 5670493

Create canvas.js

Browse files
Files changed (1) hide show
  1. canvas.js +113 -0
canvas.js ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const express = require('express');
2
+ const multer = require('multer');
3
+ const JSZip = require('jszip');
4
+ const { createCanvas } = require('canvas');
5
+ const crypto = require('crypto');
6
+ const app = express();
7
+
8
+ // 设置 multer 用于处理文件上传
9
+ const storage = multer.memoryStorage();
10
+ const upload = multer({ storage: storage });
11
+
12
+ app.use(express.json());
13
+ app.use(express.urlencoded({ extended: true }));
14
+
15
+ // 新增 GET / 路由来提供前端页面
16
+ app.get('/', (req, res) => {
17
+ res.send(`
18
+ <!DOCTYPE html>
19
+ <html lang="en">
20
+ <head>
21
+ <meta charset="UTF-8">
22
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
23
+ <title>File Upload</title>
24
+ </head>
25
+ <body>
26
+ <h1>Upload a File</h1>
27
+ <form id="uploadForm" action="/upload" method="post" enctype="multipart/form-data">
28
+ <input type="file" id="fileInput" name="file" required>
29
+ <button type="submit">Upload</button>
30
+ </form>
31
+ <script>
32
+ document.getElementById('uploadForm').addEventListener('submit', async (event) => {
33
+ event.preventDefault();
34
+ const formData = new FormData(event.target);
35
+ const response = await fetch(event.target.action, {
36
+ method: 'POST',
37
+ body: formData
38
+ });
39
+ if (response.ok) {
40
+ response.blob().then(blob => {
41
+ const url = window.URL.createObjectURL(blob);
42
+ const a = document.createElement('a');
43
+ a.style.display = 'none';
44
+ a.href = url;
45
+ // 从Content-Disposition头中提取文件名
46
+ const contentDisposition = response.headers.get('Content-Disposition');
47
+ const fileName = contentDisposition.match(/filename="(.+)"/)[1];
48
+ a.download = fileName;
49
+ document.body.appendChild(a);
50
+ a.click();
51
+ window.URL.revokeObjectURL(url);
52
+ alert('File downloaded successfully!');
53
+ });
54
+ } else {
55
+ alert('Failed to upload file.');
56
+ }
57
+ });
58
+ </script>
59
+ </body>
60
+ </html>
61
+ `);
62
+ });
63
+
64
+ app.post('/upload', upload.single('file'), async (req, res) => {
65
+ try {
66
+ const file = req.file;
67
+ const fileName = file.originalname;
68
+ const fileType = file.mimetype;
69
+ const fileBuffer = file.buffer;
70
+
71
+ // 压缩文件成 zip 格式
72
+ const zip = new JSZip();
73
+ zip.file(fileName, fileBuffer);
74
+ const zipBuffer = await zip.generateAsync({ type: 'nodebuffer' });
75
+
76
+ // 创建包含文件信息的表格图片
77
+ const width = 400;
78
+ const height = 300;
79
+ const canvas = createCanvas(width, height);
80
+ const ctx = canvas.getContext('2d');
81
+ ctx.fillStyle = '#FFFFFF';
82
+ ctx.fillRect(0, 0, width, height);
83
+ ctx.fillStyle = '#000000';
84
+ ctx.font = '20px Microsoft YaHei';
85
+
86
+ const text = `
87
+ File Name: ${fileName}
88
+ File Type: ${fileType}
89
+ File Size: ${fileBuffer.length} bytes
90
+ Created At: ${new Date().toLocaleString()}
91
+ `;
92
+ ctx.fillText(text.trim(), 10, 100);
93
+ const rawImageData = canvas.toBuffer('image/jpeg', { quality: 0.75 });
94
+ const finalBuffer = Buffer.concat([rawImageData, zipBuffer]);
95
+ //const outputFileName = encodeURIComponent(fileName.replace(/\.[^/.]+$/, "") + '-pic.zip.jpg');
96
+
97
+ // 生成随机的哈希值作为文件名
98
+ const hash = crypto.randomBytes(16).toString('hex');
99
+ const outputFileName = encodeURIComponent(hash + '-pic.zip.jpg');
100
+
101
+ res.setHeader('Content-Type', 'image/jpeg');
102
+ res.setHeader('Content-Disposition', `attachment; filename="${outputFileName}"`);
103
+ res.send(finalBuffer);
104
+ } catch (error) {
105
+ console.error(error);
106
+ res.status(500).send('An error occurred');
107
+ }
108
+ });
109
+
110
+ const PORT = process.env.PORT || 7860;
111
+ app.listen(PORT, () => {
112
+ console.log(`Server running on port ${PORT}`);
113
+ });