kadirmenz
kadirmenz
Hi did you fix it? I face with same problem
Can you give me advice for this future?
Actually I can successfully show image on unity client with LoadImageAtPath. But after that I prepare WWWForm to send this image to server. Like that: ``` public void TakePicture() {...
``` public void TakePicture() { NativeCamera.Permission permission = NativeCamera.TakePicture((path) => { string fileName = Path.GetFileName(path); string extension = Path.GetExtension(path).Substring(1); string type = "image/" + extension; if (path != null) {...
I already try it :/, First I set it 512 then down 256 also try 128 and others
Yes now it works when I use EncodeToJPG, But why it doesnt work via EncodeToPNG. even I didnt give quality parameter to EncodeToJPG it still works fine. Weird