How to scan images using camera in Black berry? - api

I have started one project in which I want to implement QR code scanning functionality. Say for example: ZXing in android. I want to implement for blackberry OS 6 and above. I want to scan live images using camera. Is it possible? If yes, then how it possible?

You have to use the Barcode API. It was released for OS 6.0. Before that, there was ZXing (added in 5.0) but no livescan functionality.
Here you are the how-to:
http://supportforums.blackberry.com/t5/Java-Development/How-to-use-the-Barcode-API/ta-p/574569

Please check this in your eclips folder
path is
Eclipse\plugins\net.rim.ejde.componentpack6.0.0_6.0.0.29\components\samples\com\rim\samples\device\barcodescandemo
barcodescandemo demo is QRcode reader
please check it you can find all things

Related

How to predict the QR scan result of the mobile camera?

Thanks to the help of Ohgodwhy, I realized that it is possible to use QR code for a advertising, too.(question) Just scanning code shows the banner with options of Open Browser and Install App, it's really amazing.
I really want to realize this. I want to do it in my vue project. The problem is that I am not sure about the preview content of the link of the QR code. I am just embedding the link. The scanned result might show the link and hopefully the preview of the link.
But I am not sure how it would look like. Preview of the link are different on different platforms. Can you help me how to guess the content that will be shown by the mobile device as the banner when it successfully scanned the QR code?

React Native open Source sdk

Hi i am developing a social app using react-native.Most part is done. I want to embed a video calling feature upto 4 participants. Is there any open source sdk which i can use for this purpose?Thanks in advance.
Please try this, I have not personally tried.
https://github.com/EnableX/One-to-One-Video-Calling-Open-Source-React-Native-Application

How to implement Barcode Scanner inTitanium step by step method using zxing or any library?

I have to implement a barcode scanner in both android and ios where I need to scan the barcode and retrieve data and bind it in the text field.
There is one official barcode module you can look into that is fully open source. This means you can use it directly in your app on both platforms, AND you can check the source code to see how it is build, and if needed hook into that logic, expand it with your own functionality or add support for barcode types etc.
It is called ti.barcode and can be found on GitHub. It uses zxing under the hood as well.
You can use below hyperloop project as well which uses zxing lib directly
https://github.com/m1ga/hyperloop.barcode

How can we achieve coverflow view in android titanium?

I have seen that titanium support CoverFlowView in titanium but it works only on ios, Can anyone have idea to achieve CoverFlow in android with titanium
Thanks in advance
Looks like you are in luck! Someone already built a coverflow module for Android using the Android development environment.
https://github.com/moondroid/CoverFlow
You need to be willing to write the additional code for that to turn it into a module for Titanium.
http://docs.appcelerator.com/titanium/3.0/#!/guide/Android_Module_Development_Guide
It should be possible, but I must admit I've never tried to write one myself.
Basically you cannot get Coverflow on Android. Since it is a native iOs component which is not implemented in Android at all. Frameworks like Titanium always "link" your commands to internal system APIs. When there is no API there is no way to access it. Of course you could try to build it on your own but I think this would not work that well. And its a lot of work!
Additionally cover flow is not really useful (except for holding just a few items). Have a look at my question at ux.stackexchange.

Is it possible to get all the images saved in imagelibrary at a time into my application in iphone sdk?

I want to get all the images stored in my device library and I want to add all those images to my application . Is it possible if so please give me idea
Thank you
Praveena Nalajala
It is not possible in iPhone SDK 3.0 (which you have tagged your question with), using public APIs.
In iOS 4.0, you can use ALAssetsLibrary to access the device's saved image library.
yes possible.
https://github.com/elc/ELCImagePickerController
http://www.icodeblog.com/2011/03/03/update-elcimagepickercontroller/