I want to implement a image croper for web using flutter - flutter

Here I have a blocker in development. I want to create a UI by which I can change my profile picture after croping image, and this is a web application So how can I achieve this task like crop image and chang dp for web using flutter.

I haven't tested it yet, but this looks very promising:
https://pub.dev/packages/extended_image

Related

In flutter_driver test, How can we automate the part where we upload images or videos?

I am writing integration test using flutter_driver, there is a test flow where I have to upload profile picture, is there any way we can automate this part. as I cannot find anything relevant to this on internet.
The specific part where I am stuck is this when I come to this screen I need to tap on Upload image button in below screen
This is screen with upload images button
After tapping this I go to gallery where I select a image and it gets uploaded.
gallery screen
This part where we have to select an upload an image is what I want to automate but I am stuck in this part, how can we achieve this.
Is this possible? please help, thanks
Since the library or should I say intent is not part of your flutter activity, It would be very tricky or near to impossible to implement the task, but what you can do is you can create your own flutter page with the the slimier view and implementation inside the app(like gallery shown in screenshot) after that you can Implement that functionality. Here's one example of gallery application. You can modify according to your need and can do testing in that
https://github.com/aouahib/photo_manager_demo
It works on my machine. please let me know if it works on yours too. I think you are using android one phone. It should work on that.

How can you take a panorama picture using Ionic?

How to take a panorama picture using Ionic ? i tried using the camera plugin on ionic but no luck. it just take a simple picture.
Extra Camera features such as panorama mode (with multiple images blending etc) are not yet exposed by platforms APIs unfortunately. You can not achieve it in Ionic since current plugins do not have those functions.

How to build an Image app in ionic?

I'm building simple image editing app in Ionic. Primary task is to insert a logo to image selected. User should be able to move the logo, resize it and rotate it. Once the user has placed the logo, app shall be able to create image with logo attached.
My question: what will be the best approach to do something like this? Are there ready made APIs available?

Is It possible to set .gif as ionic2 splash screens intead of .png?

I have working on Ionic 2 project and want to set a .GIF image as splash screen .
If it is possible then please guide me how to set the same .
No. Splash screens are converted to platform specific resources, which is displayed while all the Ionic runtime is initializing. Both Android and iOS only supports static images for this.
You may be able to display something cool while performing asynchronous network requests. This has to be after the app is initialized, of course.
It is not possible to do directly, but there are some workarounds, for example using the SVG animation.
Check this tutorial from joshmorony.com:
https://www.joshmorony.com/creating-an-animated-splash-screen-in-ionic/
Hope it helps!

How to create an image app for iphone?

I was wondering how to go about creating an image app for the iphone. I know how to create an iphone app. I was just wondering what the best way to make an image app is. I want the user to be able to import an image, and then the app will add an effect to it like blur it or tint it or warp it. How can I do this? I've been searching forever. Please help.
I encourgae you to look into a few image processing libraries for iOS that are out there. A search on Google will return a few options..
Here's one > http://mobileorchard.com/a-simple-iphone-image-processing-library/
You should also look into the sample code provided by Apple on GLImageProcessing > http://developer.apple.com/library/ios/#samplecode/GLImageProcessing/Introduction/Intro.html
Regarding importing pictures into your app; there are several examples out there on how to do so through the UIIMagePickerController. Here's one >
http://maniacdev.com/2010/02/uiimagepickercontroller-using-the-camera/