Giter VIP home page Giter VIP logo

Comments (7)

DaniRvd avatar DaniRvd commented on June 2, 2024 2

The issue is indeed the AllowCropping is set by default on true, this setting should be exposed and make it available to the developer.
But seems nobody from Xamarin Essentials read this

from essentials.

gdougherty-cbt avatar gdougherty-cbt commented on June 2, 2024 1

Are there any updates on this? It seems like it should be a relatively simple fix to expose the property or disable clipping since it doesn't seem to work as a feature in that context in general.

from essentials.

gdougherty-cbt avatar gdougherty-cbt commented on June 2, 2024 1

For anyone that needs a workaround, adding this method to a helper on your UWP project and calling it via the dependency service works.

    public async Task<(FileResult, byte[])> CaptureAsync(MediaPickerOptions options, bool photo)
    {
        // This is largely taken from the following file to get around the following issue
        // https://github.com/xamarin/Essentials/blob/ae2cb946f8215ff49fa20773ec824b317e6ca603/Xamarin.Essentials/MediaPicker/MediaPicker.uwp.cs
        // https://github.com/xamarin/Essentials/issues/2112
        var captureUi = new CameraCaptureUI();

        if (photo)
        {
            captureUi.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Jpeg;
            captureUi.PhotoSettings.AllowCropping = false;
        }
        else
        {
            captureUi.VideoSettings.Format = CameraCaptureUIVideoFormat.Mp4;
        }

        var file = await captureUi.CaptureFileAsync(photo ? CameraCaptureUIMode.Photo : CameraCaptureUIMode.Video);
        // I'm not 100% sure why but assume it's related to local extension methods I don't have access to, but I cannot send the file as an argument to the file result.
        //      We still can use it's file name handling here, etc., but the OpenReadAsync on the FileResult object created below does not work.
        //      Pulling the full image early here lets us work around this issue.
        if (file != null)
        {
            using (var ms = new MemoryStream())
            {
                using (var s = await file.OpenReadAsync())
                {
                    s.AsStreamForRead().CopyTo(ms);
                    return (new FileResult(file.Path, file.ContentType), ms.ToArray());
                }
            }
        }

        return (null, null);
    }

from essentials.

z0mero avatar z0mero commented on June 2, 2024

Hello Sir, i also have the same problem but i didn't find a workaround for this issue yet. Please let me know if you find any solution!

from essentials.

denisdnl avatar denisdnl commented on June 2, 2024

I went into the same problem. Didn't find any solution.

from essentials.

DaniRvd avatar DaniRvd commented on June 2, 2024

Manage pass over the issue described above.
But now I have another issue on UWP when my app is running on Windows 11 platform. Because
Did some debugging on the Xamarin Essentials sample code. and the issue is caused by the setting form picture bellow, because you cannot save the unstill you make some editing, and if you press the save a copy button then the image cannot be loaded to the app anymore.
image

My question is if you can expose AllowCropping setting int the MediaPickerOptions this way the this setting can be disabled and MediaPicker will work again as expected.

This issue can be closed I'll open a new one and complete all the details needed

from essentials.

Maxgamerboy1 avatar Maxgamerboy1 commented on June 2, 2024

Encountering this issue too, in regard to the cropper not allowing to save without editing, though i'm not seeing the code mentioned here

Manage pass over the issue described above. But now I have another issue on UWP when my app is running on Windows 11 platform. Because Did some debugging on the Xamarin Essentials sample code. and the issue is caused by the setting form picture bellow, because you cannot save the unstill you make some editing, and if you press the save a copy button then the image cannot be loaded to the app anymore. image

My question is if you can expose AllowCropping setting int the MediaPickerOptions this way the this setting can be disabled and MediaPicker will work again as expected.

This issue can be closed I'll open a new one and complete all the details needed

or is it the fact that AllowCropping is set to true by default?
I believe this to be the line in question

captureUi.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Jpeg;

from essentials.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.