iosprintingwifiairprintios-bluetooth

Non-AirPrint-enabled printer for iOS


For non-AirPrint enabled printer Apple does not have any in built API. I learned that we can add a WiFi module to a printer. So my question is:

I found the following one: https://github.com/opentable/star-printing.

But from the documentation I could not understand: is it only for AirPrint enabled printers?

Below are the ways I can connect a desktop printer using iPad I guess.

  1. WIFI enabled
  2. Bluetooth enabled
  3. Bonjour enabled printer
  4. Networked printers (printer having same ip segment with iPad)

Solution

  • Trying to answer all your questions:

    No. You need an AirPrint compatible printer, simply making it available over WiFi does not make it an AirPrint printer, and you cannot change the device to make it an AirPrint printer.

    Yes. However, it will require that you directly open connection with the printer (via a socket) and send the data that way. It's really not too hard to do. There are likely some libraries available, but I haven't specifically tried. The code to open the port and send a data blob is pretty trivial, assuming you have the PCL data already.

    Yes, as described above.

    Yes, but only on MFi (Made For iOS) printers.

    Yes, via the built in print dialog.

    This could probably be done the same way as the WiFi printing, but I haven't tried it yet.

    Hope that helps, let me know if I can clarify anything.