File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ ngx.log(ngx.ERR,height)
74
74
ngx .log (ngx .ERR ,ngx .var .img_file );
75
75
ngx .log (ngx .ERR ,ngx .var .request_filepath );
76
76
-- 裁剪后保证等比缩图 (缺点:裁剪了图片的一部分)
77
- -- gm convert input .jpg -thumbnail "100x100^" -gravity center -extent 100x100 output_3 .jpg
77
+ -- 如: gm convert autoSize .jpg -resize x200 -quality 100 +profile "*" autoSize.jpg_-200 .jpg
78
78
if (file_exists (ngx .var .request_filepath )) then
79
79
local cmd = gm_path .. ' convert ' .. ngx .var .request_filepath
80
80
if height == 0 then
@@ -83,6 +83,8 @@ if (file_exists(ngx.var.request_filepath)) then
83
83
cmd = cmd .. " -resize " .. " x" .. height .. " "
84
84
end
85
85
86
+ -- 由于压缩后比较模糊,默认图片质量为100,请根据自己情况修改quality
87
+ cmd = cmd .. " -quality 100"
86
88
cmd = cmd .. " +profile \" *\" " .. ngx .var .img_file ;
87
89
ngx .log (ngx .ERR , cmd );
88
90
os.execute (cmd );
Original file line number Diff line number Diff line change @@ -52,15 +52,18 @@ if not is_dir(getFileDir(ngx.var.img_file)) then
52
52
os.execute (" mkdir -p " .. getFileDir (ngx .var .img_file ))
53
53
end
54
54
55
- ngx .log (ngx .ERR ,ngx .var .img_file );
56
- ngx .log (ngx .ERR ,ngx .var .request_filepath );
55
+ -- ngx.log(ngx.ERR,ngx.var.img_file);
56
+ -- ngx.log(ngx.ERR,ngx.var.request_filepath);
57
+
57
58
-- 裁剪后保证等比缩图 (缺点:裁剪了图片的一部分)
58
- -- gm convert input .jpg -thumbnail "100x100^" -gravity center -extent 100x100 output_3 .jpg
59
+ -- gm convert cropSize .jpg -thumbnail 300x300^ -gravity center -extent 300x300 -quality 100 +profile "*" cropSize.jpg_300x300 .jpg
59
60
if (file_exists (ngx .var .request_filepath )) then
60
61
local cmd = gm_path .. ' convert ' .. ngx .var .request_filepath
61
62
cmd = cmd .. " -thumbnail " .. ngx .var .img_width .. " x" .. ngx .var .img_height .. " ^"
62
63
cmd = cmd .. " -gravity center -extent " .. ngx .var .img_width .. " x" .. ngx .var .img_height
63
- -- cmd = cmd .. " -quality 100"
64
+
65
+ -- 由于压缩后比较模糊,默认图片质量为100,请根据自己情况修改quality
66
+ cmd = cmd .. " -quality 100"
64
67
cmd = cmd .. " +profile \" *\" " .. ngx .var .img_file ;
65
68
-- ngx.log(ngx.ERR, cmd);
66
69
os.execute (cmd );
You can’t perform that action at this time.
0 commit comments