Add deprecated comment to scaleFactor parameter
This commit is contained in:
parent
3b259b4243
commit
8680a08a8d
2 changed files with 10 additions and 2 deletions
|
@ -44,6 +44,13 @@ describe('nativeImage module', () => {
|
|||
const imageH = nativeImage.createFromBuffer(imageA.toJPEG(100),
|
||||
{width: 100, height: 200})
|
||||
assert.deepEqual(imageH.getSize(), {width: 538, height: 190})
|
||||
|
||||
const imageI = nativeImage.createFromBuffer(imageA.toBitmap(),
|
||||
{width: 538, height: 190, scaleFactor: 2.0})
|
||||
assert.deepEqual(imageI.getSize(), {width: 269, height: 95})
|
||||
|
||||
const imageJ = nativeImage.createFromBuffer(imageA.toPNG(), 2.0)
|
||||
assert.deepEqual(imageJ.getSize(), {width: 269, height: 95})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue