top of page
  • Instagram
  • Youtube
  • X
Design sem nome(1).png

Ирина

Russian Federation

Фотографирую 3 года . Училась стрит фотографии у Рогожкина С. Б. Фотографирую портреты и стрит.
Portfolio
VERTICAL
HORIZONTAL

More Photographers

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; }