EnzoDomingues

Results 6 comments of 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? :) ![Screenshot_20240603-121255](https://github.com/mrousavy/react-native-vision-camera/assets/31856225/1ec8acdc-a699-47f4-b8d1-f458a95caf0d) @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...

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"));...