9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
|
import Jimp from "jimp";
|
||
|
|
||
|
let image = await Jimp.read("./assets/Xbox_Controller_Blank.svg");
|
||
|
|
||
|
image.resize(250, 250);
|
||
|
|
||
|
await image.writeAsync("test.png");
|
||
|
|