瀏覽代碼

Add a comment about dprScale for future historians

DarthSim 2 月之前
父節點
當前提交
08150dcc16
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      processing/prepare.go

+ 3 - 0
processing/prepare.go

@@ -110,6 +110,9 @@ func calcScale(width, height int, po *options.ProcessingOptions, imgtype imagety
 				dprScale /= minShrink
 			}
 		}
+
+		// The minimum of wshrink and hshrink is the maximum dprScale value
+		// that can be used without enlarging the image.
 		dprScale = math.Min(dprScale, math.Min(wshrink, hshrink))
 	}