UNPKG
@fukayatti0/discord-rpc
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.1
a fork of discordjs/RPC
github.com/fukayatti/discord-rpc
fukayatti/discord-rpc
@fukayatti0/discord-rpc
/
dist
/
utils
/
padImageUrlToSquare.d.ts
8 lines
(7 loc)
•
353 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * 指定URLの画像をダウンロードし、1:1の正方形PNG(上下透明パディング)に加工してBufferで返す *
@param
imageUrl 画像URL *
@param
size 正方形の一辺のピクセル数 *
@returns
加工済み画像のBuffer */
export
declare
function
padImageUrlToSquare
(
imageUrl
:
string
,
size
:
number
):
Promise
<
Buffer
>;