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..
Related
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??
first of all sorry my english
I'm developing a flutter application using the camera flutter plugin, after capturing the images I upload to amazon's S3
everything works fine, but users have begun to complain that the images taken on my app and the camera's native app look very different
in my app the image looks like I've been zoomed in by cropping the sides and top
in the native app the area that the camera captures is much larger
I would like my app to take photos like the native app (same area)
it is possible?
I already searched and found nothing related to it, I already changed the
ResolutionPreset.max
changed the size of my cameraPreview
unsuccessfully
Any help is welcome
thanks
I was able to resolve by updating the plugin version
I was using the camera: ^ 0.5.6
now I'm with
camera: ^ 0.5.7 + 3
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
Hi
I am developing an ipad Magazine app where I need to display pdf files.I am using leaves project for page curl effect.This works great.
But in landscape page fits to height(768px) and it becomes difficult to read the font.
Thats why I want to support zoom in/out on this view.
I am a newbie to Core Graphics.I think in leaves project they parse pdf to show image of each page.But I dont know why zoom is not supported if it is an image.
There are some more branches of leaves project for implementing this feature but all of them are not perfect.
Shall I continue using leaves or UIViewAnimationTransitionCurlUp/Down will help me for both the problems?
Thanks
here is the code for your requirement. check out this
You can refer this tutorial. Provided by APPLE
Hope it helps.
I have created a UIImageView in Interface Builder. When I run the application on the simulator the image shows up, when I run the application on the device the image doesn't show up. Any help is welcome. Thank you!!!
Check your image format, sometimes the image format may not be supported by the device.
Just found out the problem...Thank for the help. The issue was I copied the image from the internet and saved it with a .png file extension without converting it. Then I brought the image into xcode. After I used gimp to convert my image to a .png and replaced it inside xcode it worked properly.