UNPKG
liang-z-screenshot
Version:
latest (1.0.1)
1.0.1
1.0.0
vue-web-screen-shot 修复 html2canvas 截图 图片空白
github.com/likaia/screen-shot
likaia/screen-shot
liang-z-screenshot
/
dist
/
lib
/
module
/
common-methords
/
ImgScaling.d.ts
12 lines
(11 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * 等比例缩放图片 *
@param
imgWidth
*
@param
imgHeight
*
@param
containerWidth
*
@param
containerHeight
*/
export
declare
function
imgScaling
(
imgWidth
:
number
,
imgHeight
:
number
,
containerWidth
:
number
,
containerHeight
:
number
): {
tempWidth
:
number
;
tempHeight
:
number
; };