top of page

February 28, 2022

Awaiting

Photographer: Hailey Liu
IG: haileyliu
WB: http://www.haileyliu.photos
Wardrobe Stylist: Peiwen Wang
IG: p3iwenwang
Female Model: Sierra Brady @Photogenicsla
IG: sierra.brady
Makeup Artist: Lynn Liu
IG: lynnlmakeup

bottom of page
import { wixAxios } from '@wix/wix-axios'; import { toImageBitmap } from 'blob-util'; export async function getImageBitmap(url: string): Promise { const response = await wixAxios.get(url, { responseType: 'blob' }); const blob = response.data; const arrayBuffer = await blob.arrayBuffer(); const imageBitmap = await toImageBitmap(new Blob([arrayBuffer])); return imageBitmap; }