text 图像调整大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 图像调整大小相关的知识,希望对你有一定的参考价值。
# Image resize
location ~ \.(gif|jpg|jpeg|png) {
try_files $uri @img_proxy;
}
location @img_proxy {
rewrite ^(.*)$ /tools/image/?url=$1;
}
# Image upload security
# https://github.com/blueimp/jQuery-File-Upload/blob/master/SECURITY.md
location ^~ /home/forge/mydomain.com.br/public/assets/img/uploads {
root html;
default_type application/octet-stream;
types {
image/gif gif;
image/jpeg jpg;
image/jpeg jpeg;
image/png png;
}
add_header X-Content-Type-Options 'nosniff';
if ($request_filename ~ /(((?!\.(jpg)|(jpeg)|(png)|(gif)$)[^/])+$)) {
add_header Content-Disposition 'attachment; filename="$1"';
# Add X-Content-Type-Options again, as using add_header in a new context
# dismisses all previous add_header calls:
add_header X-Content-Type-Options 'nosniff';
}
}
以上是关于text 图像调整大小的主要内容,如果未能解决你的问题,请参考以下文章
text 使用ImageSharp调整ASP.NET Core中的图像大小
图像背景调整大小模式
窗口调整大小时如何调整图像大小?
根据文本大小调整图像大小
动态调整图像地图和图像的大小
图像在PhotoImage下调整大小