Is there any module to generate barcode from number in Titanium Appcelerator? - titanium

For barcode scanning there are modules available like Redlaser,Scandit..etc.
Is there any module to generate barcode from number(reverse procedure)?
Thanks.

A nice trick to avoid the main of modules, you can simply download a Barcode font, embed it in your app, and simply show a label with the text and the barcode font.
Be sure to check if the font is real, some are just artists conceptions and do not generate actual barcodes. Just make a few tests with a scanner app before you launch!
M_

There is Scandit api's available for this implementation Here is the working example link,
Here is instructions how to use it.
Hope this may help some one else also.
Thanks.

Related

PDF annotation in React-native mobile app

I want to create a PDF annotation app with react-native, without using third-party libraries. If you guys have any idea how can I build that, please give your suggestion.
Basically, I want to add text selection and highlight in any available PDF without using a third-party library. If you have any idea then, please tell me. If it is not possible in react-native then kindly suggest me native solution.

showing mini graphs in listview react native

I need to show data in graphical representation like stock app in itunes.
There are many libs but I cant find one giving such functionalities.
Can Any body suggest how to implement.
Try using React-native-svg-charts
which you can control size and colors
here is an Example

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

Is it possible to programmatically fill input fields on a webpage through Windows Phone 7, and then save the output image?

I'm trying to find a free online service that will generate a barcode image for me, when I enter the number (UPC, etc). So far I have only found this site:
http://www.barcoding.com/upc/
and they don't really have an api. They do have a form on that page, and I was wondering if there was a way my windows phone app could programmatically enter information into the form, and then show the resulting image on the phone screen. The page does list the the barcode generator as "a free service", and I would not be averse to giving them props in my app.
On further inspection, it looks like a javascript function is calling an asp file, like so:
var cp = new cpaint();
...
cp.call('buildbarcode.asp', 'BuildBarcode', BuildBarcodeCallback, barcode, symbology, fileFormat);
Would it be fair (or even possible) to call buildbarcode.asp directly from my app? Is there an equivalent of cpaint for c#?
I think it would be easier to generate the barcodes in your application. There are a number of open source barcode tools at codeplex. There's even one there for reading barcodes with the Wp7 camera.
I dont know if there's something to fill in the fields and take a screenshot, but you might be able to use something like this library for generating barcodes:
http://www.codeproject.com/KB/graphics/BarcodeLibrary.aspx

Search and Highlight text in PDF for IPad

I am working on the PDF App for iPad and facing an issue: how to search a text in PDF and also how to highlight that text?
Yours is the same big problem I'm having. My understanding is that, currently on iOS 4.0, the main public API is CGPDF . It allows us to parse PDF, and with it we can search strings in it. See also this Quartz 2D document. It also allows us to render it on the screen using CGContextDrawPage. However, it's not yet possible to get the position of a text in the rendered image. (On OS X it's possible using PDFKit.)
So, I'm afraid that you need to implement the PDF spec yourself to get that info. I think GoodReader etc. is working very very hard to implement these.
I had the same trouble recently and then I found FastPDFKit. Have tested the package and it's working great.
http://mobfarm.eu/fastpdfkit