EnzoDomingues
EnzoDomingues
I just changed this line ``` - canvas.rotate(rotation, frame.width / 2, frame.height / 2) + canvas.rotate(rotation, frame.width / 2, frame.height / 1.5) ``` on useSkiaFrameProcessor.ts Not it's working as expected
> Created a fix for this here; #2931 > > Can you guys test if this works for you? :)  @mrousavy Hey, for me, it's even worse I'm using...
@mrousavy I was using this format before ``` const format = useCameraFormat(device, [ { videoResolution: { width: 480, height: Platform.OS === 'ios' ? 640 : 720, }, }, ]); ```...
> @EnzoDomingues can you leave the format, aspect ration configurations at the default or use them exactly like in this example app and send a new screenshot? The first screenshot...
@snooplsm didn't work with me
const blob = await new Promise((resolve, reject) => { const xhr = new XMLHttpRequest(); xhr.onload = function () { resolve(xhr.response); }; xhr.onerror = function () { reject(new TypeError("Network request failed"));...