Category Archives: Classic Camera

Classic Camera app updated to version 1.1

IMG_20150308_122951.cropThe Classic Camera app has been updated to version 1.1 in BlackBerry World. This new version of the app gives phones with physical keyboards the ability to also capture pictures by using the spacebar. Additionally, users now also have the option to give the camera an audible shutter noise. By default this is turned off, but users can activate it through the options screen that can be accessed from the swipe down menu.

About Classic Camera

On the newest versions of BlackBerry 10, the default camera app no longer allows you to capture a picture by simply allowing you to tap anywhere on the screen. So the Classic Camera is a third party camera that restores this behavior. Additionally there are options on the bottom of the screen to quickly toggle the flash, camera, and image ratio. After capturing an image a preview will appear in the lower left corner that can be tapped to preview or edit the most recently taken photo.

Links & Information

icon480

How to invoke the Classic Camera app

The Classic Camera app can be invoked using the following code…


InvokeManager mInvokeManager = new InvokeManager(this);
connect(mInvokeManager,
      SIGNAL(childCardDone(const
      bb::system::CardDoneMessage&)), this,
      SLOT(childCardDone(const
      bb::system::CardDoneMessage&)));
InvokeRequest request;
request.setAction("bb.action.CAPTURE");
request.setTarget("com.ebscer.classiccamera.card");
request.setMimeType("image/jpeg");
mInvokeManager->invoke(request);

The response data contains the file name of the captured image.

My annoyance with the 10.3 camera

With OS 10.3 BlackBerry has added many great features such as app folders with an unlimited size, apps with theme colors, and advanced interaction’s like “Lift to Wake” feature. Despite all of this the newest version of the operating system took a step back with the new version of the camera. Unlike previous versions of the BlackBerry 10 camera app that allowed you to tap anywhere on the screen to take a picture the new version of the app requires you to use a small button on the bottom of the screen. Not only is this the loss of a feature, but it also sometimes makes it tricky to hold the phone when taking a picture.

IMG_20150309_130646_editGranted this is a minor annoyance, but I decided to fixed it anyways. So I created a new camera app.

The Classic Camera app can be purchased from BlackBerry World for $1. This camera makes it easy to take a picture by simply allowing you to tap anywhere on the screen. Also, there are options on the bottom of the screen to quickly toggle the flash, camera, and image ratio. After capturing an image a preview will appear in the lower left corner that can be tapped to preview or edit the most recently taken photo.

Links & Information

icon480