(image: UIImage, requestedSize: { width: number; height: number })
| 61 | } |
| 62 | |
| 63 | private scaleImage(image: UIImage, requestedSize: { width: number; height: number }): UIImage { |
| 64 | return NativeScriptUtils.scaleImageWidthHeightScaleFactor(image, requestedSize.width, requestedSize.height, this.options?.autoScaleFactor === false ? 1.0 : 0.0); |
| 65 | } |
| 66 | } |