mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
🐛 cors
This commit is contained in:
parent
ff9e465268
commit
2e764d73e1
17
README.md
17
README.md
@ -41,6 +41,23 @@ ui 需要展现一些特定的字体,但直接引入字体包又过大,于
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## 提供的服务
|
||||||
|
|
||||||
|
### 查询可用字体列表
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 生成压缩字体包
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
如图可见每个返回的字体资源,访问即可下载。另外在访问该目录下的 asset.zip 可以直接下载全部的文件,生成的资源目录结构见下图
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 动态生成字体
|
||||||
|
|
||||||
|
http://127.0.0.1:3000/generate_fonts_dynamically/font/1584688387272/优设标题黑.ttf
|
||||||
|
|
||||||
## 写项目时遇到的问题
|
## 写项目时遇到的问题
|
||||||
|
|
||||||
|
BIN
doc_img/api/font_list.jpg
Normal file
BIN
doc_img/api/font_list.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
doc_img/api/fontmin.jpg
Normal file
BIN
doc_img/api/fontmin.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
BIN
doc_img/生成的资源.jpg
Normal file
BIN
doc_img/生成的资源.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -6,30 +6,37 @@ import {
|
|||||||
Response,
|
Response,
|
||||||
Res,
|
Res,
|
||||||
Req,
|
Req,
|
||||||
Request,
|
|
||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { AppService } from './app.service';
|
import { AppService } from './app.service';
|
||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { promises as fs } from "fs";
|
import { promises as fs } from 'fs';
|
||||||
|
import { Request } from 'express';
|
||||||
@Controller()
|
@Controller()
|
||||||
export class AppController {
|
export class AppController {
|
||||||
constructor(private readonly appService: AppService) {}
|
constructor(private readonly appService: AppService) {}
|
||||||
|
|
||||||
// @Get()
|
|
||||||
// getHello(): string {
|
|
||||||
// return this.appService.getHello();
|
|
||||||
// }
|
|
||||||
|
|
||||||
/** 压缩字体 */
|
/** 压缩字体 */
|
||||||
@Get('fontmin')
|
@Get('fontmin')
|
||||||
font_min(@Query('text') text, @Query('font') font) {
|
font_min(@Query('text') text, @Query('font') font) {
|
||||||
return this.appService.font_min(text, font);
|
return this.appService.font_min(text, font);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 返回字体列表 */
|
/** 返回字体列表 */
|
||||||
@Get('font_list')
|
@Get('font_list')
|
||||||
font_list() {
|
font_list() {
|
||||||
const font_dir= join(__dirname, '../../src/font')
|
const font_dir = join(__dirname, '../../src/font');
|
||||||
return fs.readdir(font_dir)
|
return fs.readdir(font_dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 压缩字体 */
|
||||||
|
@Get('generate_fonts_dynamically*')
|
||||||
|
generate_fonts_dynamically(
|
||||||
|
@Req() req:Request,
|
||||||
|
@Query('text') text: string,
|
||||||
|
@Query('font') font: string,
|
||||||
|
@Query('temp') temp: string,
|
||||||
|
) {
|
||||||
|
const format=req.url.match(/\.(.*)\?/)[1]
|
||||||
|
return this.appService.generate_fonts_dynamically(text, font,temp,format);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,6 @@ import { join } from 'path';
|
|||||||
import { config } from './config';
|
import { config } from './config';
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AppService {
|
export class AppService {
|
||||||
getHello(): string {
|
|
||||||
return 'Hello World!';
|
|
||||||
}
|
|
||||||
|
|
||||||
font_min(text: string, font: string) {
|
font_min(text: string, font: string) {
|
||||||
const srcPath = `./src/font/${font}.ttf`; // 字体源文件
|
const srcPath = `./src/font/${font}.ttf`; // 字体源文件
|
||||||
const outPath = `asset/font/${Date.now()}/`;
|
const outPath = `asset/font/${Date.now()}/`;
|
||||||
@ -50,4 +46,13 @@ export class AppService {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generate_fonts_dynamically(
|
||||||
|
text: string,
|
||||||
|
font: string,
|
||||||
|
temp: string,
|
||||||
|
format: string,
|
||||||
|
) {
|
||||||
|
return 11;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ import { Response } from 'express';
|
|||||||
|
|
||||||
async function bootstrap() {
|
async function bootstrap() {
|
||||||
const app = await NestFactory.create(AppModule);
|
const app = await NestFactory.create(AppModule);
|
||||||
|
app.enableCors();
|
||||||
|
|
||||||
await app.listen(3000);
|
await app.listen(3000);
|
||||||
}
|
}
|
||||||
|
@ -13,10 +13,7 @@
|
|||||||
selected_font.forEach(font => {
|
selected_font.forEach(font => {
|
||||||
get_font(font.name, text)
|
get_font(font.name, text)
|
||||||
.then(r => {
|
.then(r => {
|
||||||
console.log(r);
|
|
||||||
|
|
||||||
r=r.replace(/\/\/.*?\//g,server)
|
r=r.replace(/\/\/.*?\//g,server)
|
||||||
console.log(r);
|
|
||||||
|
|
||||||
const family = r.match(/font-family: "(.*)"/)[1];
|
const family = r.match(/font-family: "(.*)"/)[1];
|
||||||
font.css = r;
|
font.css = r;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user