?? comprsn-ratio-files.m
字號:
K=imfinfo ('skull-50.jpg');
L=imfinfo ('skull-30.jpg');
M=imfinfo ('skull-15.jpg');
N=imfinfo ('skull-5.jpg');
image_bytes=K.Width*K.Height*K.BitDepth/8;
compressed_bytes_K=K.FileSize;
compressed_bytes_L=L.FileSize;
compressed_bytes_M=M.FileSize;
compressed_bytes_N=N.FileSize;
compression_ratio_K=image_bytes/compressed_bytes_K
compression_ratio_L=image_bytes/compressed_bytes_L
compression_ratio_M=image_bytes/compressed_bytes_M
compression_ratio_N=image_bytes/compressed_bytes_N
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -