Skip to main content

Easy printing from Smart Phones


It hard to find application that allow printing from mobile phones.Here I show five application to take print out directly from your smart phone that will work on devices from iPhones to Windows Phone 7.Printing apps work with varying degrees of ease of use.


Print n Share for iPhone

One of the top rated printing apps for the iPhone is called simply,Print n Share.It's not free:the download from the Apple iTunes App Store will run $8.99.
Once installed and with the iPhone connected to a network via WiFi, the app will do all the work of configuring a connection to a printer. Six easy,one -touch button will let you print files,e-mail,Web pages,contact and image either from a camera roll or new photos taken just to print.



PrinterShare Mobile Print for Android

This is a $12.95 app that's available for download from Android market.There are several printing apps available fro the Android platform,and it is a straightforward,automated way to print through network without going through a third-party service.
Once connected to a network over WiFi,print from your Android device by letting PrintShare do the heavy lifting.it will locate available printers on a network,allow for test pages to be printed, and then permit you to send documents or photos to a printer for output.It works and, unlike numerous other printer apps for the Android platform.









PrintTool for BlackBerry PlayBook

If you search through the BalckBerry App World online market for printing apps,the PrintTool is easily listed.It is a minimalistic,straightforward,text-printing app.We need to connect to a network via WiFi,manually enter the IP address of the printer you wish to use, and then cut and paste any plain text into the dialog box for printing.It's got three major things for it:it's free and it is the only printing app you can find the BlackBerry App World store.



PrintCentral Pro for iPad

For $8.99 from th eApple ITunes App Store,you can downlaod and insta;ll PrintCentral Pro for iPad.It allows for printing document,images and email from the devices to any printer on a network-once connect to the network via WiFi.
Some configuration is needed to import document and verify email address on the device.It won't allow you to print directly from an app,like Pages,but rather provide a path to import data into PrintCentral Pro which then sends it to the printer.



ImagePrint for Windows Phone 7

ImagePrint is the app privides by WindowsPhone 7 to take printout.It is th eonly way to take print form this phone.It is a $2.99 download from thw Windows Phone 7 Market place,ImagePrint does require manual integration of the device with a print server on the network.

Comments

Post a Comment

Popular posts from this blog

UNIX : How to get record count from zipped file

Sometimes we may need to get records count from file . For that we can use wc -l , command with file name. In some situation the file will be in compressed format . wc -l will not directly work with zipped files . In this case we can do zcat the file and pipe the word count command with it. Example : Let say we have a file cricketData.dat.gz To get word count from the file use : zcat cricketData.dat.gz | wc -l This will give the record count.

Excel : How to pad zeros

Today I got a requirement to format the number in excel cell - to left pad number with zeros.i find the following function very useful to do it. In case one to make the number left padded with "0" s give the formula =TEXT(A1,"0000") In case two even more enhanced form to make it left padded with "0" and add two decimal places give the formula as =TEXT(A2,"0000.00")

Scala

Scala is a object oriented functional type programing language. All variables declared in scala is considered as objects.