The Facebook app shows the recent photos that you've taken.
Because the NativeScript Api's are able to use the Filesystem api and the Camera, I'd guess it is possible to get the recent taken photos in NativeScript also.
Anyone that can point me to a good blog/documentation that makes me able to do this?
Pehaprs this plugin will help you out : nativescript-imagepicker
Related
I am developing a photo-sharing app in a flutter. I want to know is there any way to upload the photos, sync the photos with the cloud in the background when the user takes a new photo using the default camera app or other.
Assuming this is a question regarding flutter app, I came across few articles that explains step by step procedure to upload images
Code snipper
Uploading images on firebase
Github repo
I'm trying to build a simple Android Studio app that can read text from images: the idea is to use the camera to take a picture of a single document page and then do some OCR.
I've already tried to use my OCR on documents that I scanned manually with the Google Drive app and the result is satisfying, but when I try with raw pictures from the camera, it doesn't work anymore.
1) Is there a way to use Google Drive API (or similar) to obtain a good quality scan from the camera without reinventing the wheel?
2) Also, is there a way to do the whole process from the camera to the final text with known tools?
Any help would be really appreciated!
You Can use an Intent in your app to use the camera and resources from the google drive, it's like a link that drives the user to an other app that makes the hard work, like camera resources or google drive or even the google lens. You Can search more and find the solution for your specific problem in those links. https://github.com/zxing/zxing/wiki/Scanning-Via-Intent
https://developer.android.com/reference/android/hardware/camera2/package-summary
I have an idea to make an AR android app using Vuforia and Unity3d with Android Studio. I have never worked with Vuforia so i don't know if it is possible or not.
Basically in app user can set target for Vuforia through mobile camera and he can also assign which object is displayed on that target. For example user takes a picture of a glass as a target and he also sets a video of how glass is made (from uploading or through youtube link). And then video is augmented on glass target.
i don't know if its possible? and how?
any tutorials and guidance would be appreciated.
thanks :)
In order to track an image target you have to create database in your case a user defined one. And this database should be created using Target Manager from Vuforia webpage. Then you have to download this database and add it to your Unity project like this. Therefore, I do not think you can create image targets while your game is running.
Question:
It is possible to upload photo from Android App to Instagram?
Some says its not possible because of this http://instagram.com/developer/endpoints/media/
I just want to clarify if it is possible or not. If not possible if there another way on how to upload photo to instagram?
No it is not really possible. The Instagram API only supports the retrieval of data (as you can see based on all of those GETs).
There really are no alternatives either since Instagram doesn't want to let other people have this type of functionality (otherwise we would see a ton of knockoff Instagram apps).
I would like to include a menu item in my Android app (built using Cordova/PhoneGap) that provides users with the ability to invite their friends to download the app from Google Play.
Does anyone know of an existing solution for this? I have not had much luck finding one.
On BlackBerry10, this is extremely easy to do (literally 1 line of code). It leverages the OS and BBM to share the download URL of your app with your closest friends:
blackberry.bbm.platform.users.inviteToDownload();
link
Please tell me something similar like this exists for Android (iOS?) ? Thank you.
I use this plugin and works perfectly: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
It's a sharing plugin that allows a lot of configuration options. You could configure it so users share a link to your app on Google Play. The documentation explains how to set everything up.