top of page

Interviews,Portfolio reviews and more

Youtube Channel

We,launched our youtube channel, with the intention of conducting video interviews with photographers who send us their photos, we choose the best photo of each month and we will ask them to answer some questions about their work.

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