Image Gallery with Ionic - ionic-framework

I'm trying to make a simple image gallery app with Ionic. I don't want to get them from the internet or from the camera. I want to get the images from my device and show them. And in something like a grid with two images per row.
I tried to do that with Ionic Photo Library but it didnt't work. It only showed that broke image icon.
Can someone help me please?
Update 11/26/2018
I tried to use Ionic Photo Library like it's described at GitHub again and I noticed that I'm getting the informations about the images. The problem is to show those images at the View. I do exactly as it is showed there but I get this error in console:
GET "path_of_image" net::ERR_UNKNOWN_URL_SCHEME

sample 1
sample 2
sample 3
you can check

Related

How to save photo taken by flutter camera app to gallery? NB: I want to use camera app created by flutter

I am a beginner to Flutter, and I managed to create a flutter camera app with lot of reference from many sites. But now I am struggling to save the image to phone gallery. I don't want to use image picker for that purpose and I tried gallery saver package as well. Nothing is working. Please help me with the issue??

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.

FILE_URI is not displaying image when app is re-opened ionic

Im developing a IOS app in ionic .
Im using cordova camera plugin as stated in this tutorial and got FILE_URI of image, and is working fine when i'm displaying it in img tag..
But when I close and re-open the app , Image is not showing. I'm not getting what's wrong is going on..
Can anybody suggest me the correct answer?
Thankyou
We had the same problem and used local storage to fix the issue.
Thankyou for your answer.
The problem with the camera api is, whenerver we upload the image from session to session we will get the same image link . we have to change the name of the image such that it will differentiate between old Image and new Image..
Detailed explanation and solution is here..

Integrate Photo Gallery + iPhone

I am making an app in which on one of the view I want to display photo gallery photos thumbnails. If I click on any image then It must get zoom, there is also accept and delete functionality on zoom view. If user want to delete the photo then It must get delete from the photo gallery. I have tried a lot to implement this functionality but unable to get the required output.
How should I integrate the default photo gallery with my app? Following are the images which make you more clear about the functionality I want to implement. How can I start to make this functionality?
hi there is a good framework which is capable of this
three20
If you want other similar things goto cocoacontrols
Use KTPhotoBrowser
https://github.com/kirbyt/KTPhotoBrowser

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/