Nov 07

* SPECIAL SALE * Yukiko Sato * C3L & HS Chocolate River of Chibi TESAGE Cases, Style 3, Digital Camera Carry Cases, iPod, iPhone, Passport Pocket

* SPECIAL SALE * Yukiko Sato * C3L & HS Chocolate River of Chibi TESAGE Cases, Style 3, Digital Camera Carry Cases, iPod, iPhone, Passport Pocket

  • Open Top (Velcro)
  • with Split Ring for Keys, Straps
  • Cotton Corduroy
  • Stylish Color Combination
  • comes with Hip Strap

Very useful Purse!

Size: 4 1/2″ x 6 1/4″ ( 15.9 x 11.4 cm Open-Top, Velcro Closure to easy access.You can use for iPod, Black Berry, Digital Camera, Smart Phone, small change, lipstick, contact lenses case, eye drop, pill case, tea bags, business cards, credit cards and anything small things!
Organize your bag!!Split Ring for Keys, charm and WriStrap, NeckStrap and Hip Strapmade in New York, USA

List Price: $ 42.00

Price: $ 35.80

Oct 05

Apple® iPad™ Camera Connection Kit – White (MC531ZM/A)

Apple® iPad™ Camera Connection Kit – White (MC531ZM/A)

  • import photos and videos from a digital camera: using your cameras USB cable or directly from an SD card
  • iPad and the Camera Connection Kit support standard photo formats, including JPEG and RAW
  • Compatible with ONLY iPad

With the iPad Camera Connection Kit, it’s incredibly easy to download photos from your digital camera to your iPad so you can view them on the gorgeous iPad display and share them with family and friends. The kit includes two connectors, each with a different interface: The Camera Connector features a USB interface. Just plug it into the dock connector port on your iPad, then attach your digital camera or iPhone using a USB cable (not included). Use the SD Card Reader to import photos directly

Rating: (out of 34 reviews)

List Price: $ 29.00

Price: $ 25.00

Sep 12

Four Ways Camera Phones Are Better Than Cameras

Four Ways Camera Phones Are Better Than Cameras
Your smartphone does pretty much everything, and it also has a decent camera. Are point-and-shoot cameras doomed? Maybe, but not if they address these major issues. Camera – Point-and-shoot camera – Photography – Shopping – Smartphone
Read more on PC World

Rhomobile Announces RhoHub 2.0
SAN JOSE, Calif., Sept. 8 /PRNewswire/ — Rhomobile, the makers of the Rhodes smartphone app framework, today announced RhoHub 2.0, the next generation of the world’s first Development-as-a-Service for mobile. RhoHub 2.0 simplifies the process of building native mobile applications for iPhone, BlackBerry, Windows Mobile and Android phones by offering a SaaS solution for development and hosting …
Read more on redOrbit

Parallels to debut Desktop 6 for Mac on Sept. 14
Parallels Desktop 6 for Mac will soon be announced with more than 80 new and enhanced features…
Read more on MacDailyNews

Aug 25

Tips & Tricks for your iPhone Camera

Tips & Tricks for your iPhone Camera

There are many reasons why individuals buy the Apple iPhone.  Whether you want to streamline your portable electronic devices, or if you want to have a convenient way to stay connected to your friends, family and business contacts, no matter why you have purchased the iPhone, you will find a way to make it perfect for you.  However, one of the greatest features about the iPhone is the 2.0 Megapixel camera that is attached to the phone.

Unlike other cell phone camera, the iPhone camera actually takes decent photos that are perfect for your MySpace page.  Yet, there are several tips to taking great pictures with your iPhone camera, and if you apply these tips to your iPhone than you will be able to take beautiful pictures with your cell phone.

The first tip that you need to remember about your iPhone camera concerns how it actually takes pictures.  If you have tried to take photos with your iPhone, than you may have noticed something was slightly off.  Unlike traditional digital cameras that have a two stage process to taking a photograph, the iPhone features a one-stage process.  Also, unlike traditional digital cameras that take the photo once you press the shutter button, the iPhone has a much different process.  When you press the shutter button of the iPhone, nothing happens, however, it is when you release the shutter button that the iPhone takes the photo.  This has resulted in many photo’s being slightly “off timing” because the users are not used to how this camera actually takes photos.

A great tip for taking a photograph with your iPhone is to press the shutter button, and then set up your shot.  After you are satisfied with what you are seeing, than you can release the shutter button to take the photograph.  Following this tip will allow you to take better composed photographs, as well as pictures that are properly timed.  The next tip for your iPhone camera is how you set up your contact list.  This tip is really fun and will make your contact list hilarious for you and everyone around you.  When you take photos of your contacts, you can set them to where they will appear when they call you.  A great way to have fun with this feature is to place your friends on one side of a glass screen and then place yourself on the other side.

Make your friend press their face up against the glass while you take the photo.  This will serve as an optical illusion, and when they call you it will look as if they are trapped within your iPhone.  If you are looking for a fun way to express yourself, and to just have a great time with friends, set up your contact list this way.  The iPhone has many different tips and tricks within it, however, the key is to simply experiment with these tips to make them work for you.  Perhaps the greatest aspect about the iPhone is the fact that it gives users the ability to customize and create a phone environment that is solely their own.

Visit TheiPhoneBlogging.com for more iPhone Tips & Tricks

Aug 25

Custom Camera Applications Development Using Iphone Sdk

Custom Camera Applications Development Using Iphone Sdk

iPhone contains many useful features. One of them is build-in camera and Camera application system for making photos. It looks great but what about camera usage with native applications? iPhone SDK provides the capability of using camera through UIImagePickerController class. That’s great but there is a small disadvantage – you cannot create a full-screen persistent “live” camera view like the Camera application does. Instead of that you should use UIImagePickerController only in modal mode – show the pop-up modal view when you need a photo and close the view after the photo is made. You have to reopen this view again to take the next one.

Moreover, that modal view contains additional panels and controls that overlay the camera view. Another disadvantage is – you cannot take a photo in one touch; you need to touch the Shoot button to take a picture and preview it, and then you need to touch the Save button to get the photo for processing. Probably it’s the best practice but I don’t like it and I hope you think the same way.

What about using the UIImagePickerController as an ordinal non-modal view controller under the navigation controller the same way as we use the other view controllers? Try it and you will found that it works! The camera view works and looks as it should. You can assign a delegate and process UIImagePickerControllerDelegate events to get and save the photo. Ok, touch the Shoot button, touch the Save button – great, you’ve got the photo! But just look at this – the Retake and Save buttons stay above the camera view, and they don’t work now when they are touched… This is because you cannot reset the view to take another photo after taking one and touching the Save button, the view is freezed and the buttons are disabled. It seems you need to fully recreate the UIImagePickerController instance to take another photo. That’s not so simple and not so good. And you still need to use the panels and buttons that overlay the camera view…

Now I have an idea! When we touch Shoot, the view stops refreshing and displays single image from the camera; then we have to touch Retake or Save button. Can we get that image and save it without using the UIImagePickerControllerDelegate and then touch the Retake button programmatically to reset the view and get another photo? Sure we can! If you explore the camera views hierarchy after touching Shoot you will find that there is a hidden view of ImageView type. This class is not described in the SDK, but we can explore its’ methods using Objective-C capabilities. We can see that the class contains a method called imageRef. Let’s try this… Yes, it returns CGImage object! And the image size is 1200 x 1600 – it’s definitely the camera picture!

Ok, now we know we can get the photo without UIImagePickerControllerDelegate. But in what moment should we do this? Can we catch the user touches on the Shoot button to start processing? It’s possible but not so good. Do you remember our main purpose – creating the persistent full-screen camera view like system Camera application does? It’s time to do it! When we explored the views hierarchy, we’ve found that there are number of views above the camera view. We can try to hide these views and create our own button below the camera view to take the photo in one touch. But how can we force the camera view to make the photo? It’s very simple – we can get the corresponding selector from the Shoot button and call it from our action handler!

Ok, we’ve forced getting the image. But it takes us few seconds. How can we detect that the image is ready? It occurred when the Cancel and Shoot buttons are replaced by Retake and Save ones. The simplest way to detect this is starting a timer with short interval and checking the buttons. And then we can get and save the photo, using the corresponding selector from the Retake button and calling it to reset the camera view and prepare it for making a new one. Here is the code:

// Shot button on the toolbar touched. Make the photo.
– (void)shotAction:(id)sender {
[self enableInterface:NO];
// Simulate touch on the Image Picker’s Shot button
UIControl *camBtn = [self getCamShutButton];
[camBtn sendActionsForControlEvents:UIControlEventTouchUpInside];

// Set up timer to check the camera controls to detect when the image
// from the camera will be prepared.
// Image Picker’s Shot button is passed as userInfo to compare with current button.
[NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(savePhotoTimerFireMethod:) userInfo:camBtn repeats:NO];
}

// Return Image Picker’s Shoot button (the button that makes the photo).
– (UIControl*) getCamShutButton {

UIView *topView = [self findCamControlsLayerView:self.view];
UIView *buttonsBar = [topView.subviews objectAtIndex:2];
UIControl *btn = [buttonsBar.subviews objectAtIndex:1];

return btn;
}

// Return Image Picker’s Retake button that appears after the user pressed Shoot.
– (UIControl*) getCamRetakeButton {

UIView *topView = [self findCamControlsLayerView:self.view];
UIView *buttonsBar = [topView.subviews objectAtIndex:2];
UIControl *btn = [buttonsBar.subviews objectAtIndex:0];

return btn;
}

// Find the view that contains the camera controls (buttons)
– (UIView*)findCamControlsLayerView:(UIView*)view {

Class cl = [view class];
NSString *desc = [cl description];
if ([desc compare:@”PLCropOverlay”] == NSOrderedSame)
return view;

for (NSUInteger i = 0; i < [view.subviews count]; i++)
{
UIView *subView = [view.subviews objectAtIndex:i];
subView = [self findCamControlsLayerView:subView];
if (subView)
return subView;
}

return nil;
}

// Called by the timer. Check the camera controls to detect that the image is ready.
– (void)savePhotoTimerFireMethod:(NSTimer*)theTimer {

// Compare current Image Picker’s Shot button with passed.
UIControl *camBtn = [self getCamShutButton];
if (camBtn != [theTimer userInfo])
{
// The button replaced by Save button – the image is ready.
[self saveImageFromImageView];

// Simulate touch on Retake button to continue working; the camera is ready to take new photo.
camBtn = [self getCamRetakeButton];
[camBtn sendActionsForControlEvents:UIControlEventTouchUpInside];

[self enableInterface:YES];
}
else
{
NSTimeInterval interval = [theTimer timeInterval];
[NSTimer scheduledTimerWithTimeInterval:interval target:self selector:@selector(savePhotoTimerFireMethod:) userInfo:camBtn repeats:NO];
}
}

// Save taken image from hidden image view.
– (BOOL)saveImageFromImageView {

UIView *cameraView = [self.view.subviews objectAtIndex:0];
if ([self enumSubviewsToFindImageViewAndSavePhoto:cameraView])
return YES;

return NO;
}

// Recursive enumerate subviews to find hidden image view and save photo
– (BOOL)enumSubviewsToFindImageViewAndSavePhoto:(UIView*)view {

Class cl = [view class];
NSString *desc = [cl description];
if ([desc compare:@”ImageView”] == NSOrderedSame)
return [self grabPictureFromImageView:view];

for (int i = 0; i < [view.subviews count]; i++)
{
if ([self enumSubviewsToFindImageViewAndSavePhoto:[view.subviews objectAtIndex:i]])
return YES;
}

return NO;
}

// Grab the image from hidden image view and save the photo
– (BOOL)grabPictureFromImageView:(UIView*)view {

CGImageRef img = (CGImageRef)[view imageRef];
if (img)
{
// Taken image is in UIImageOrientationRight orientation
UIImage *photo = [self correctImageOrientation:img];
UIImageWriteToSavedPhotosAlbum(photo, nil, nil, nil);

return YES;
}

return NO;
}

// Correct image orientation from UIImageOrientationRight (rotate on 90 degrees)
– (UIImage*)correctImageOrientation:(CGImageRef)image {

CGFloat width = CGImageGetWidth(image);
CGFloat height = CGImageGetHeight(image);
CGRect bounds = CGRectMake(0.0f, 0.0f, width, height);

CGFloat boundHeight = bounds.size.height;
bounds.size.height = bounds.size.width;
bounds.size.width = boundHeight;

CGAffineTransform transform = CGAffineTransformMakeTranslation(height, 0.0f);
transform = CGAffineTransformRotate(transform, M_PI / 2.0f);

UIGraphicsBeginImageContext(bounds.size);

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextScaleCTM(context, – 1.0f, 1.0f);
CGContextTranslateCTM(context, -height, 0.0f);
CGContextConcatCTM(context, transform);

CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, width, height), image);

UIImage *imageCopy = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return imageCopy;
}

Another important question is: in what moment can we hide the overlaying camera views and controls and create our own button? Trying the viewDidLoad… Oops… The camera view is still not created. Trying the viewWillAppear… The same thing… Trying the viewDidAppear… Yes, the views have been created and can be hidden now. Ok, we hide that and create a toolbar with our Shoot button. It works, but the screen flicks – we see how the standard views and buttons are shown and then hidden. How can we prevent this? I tried a number of ways and had found the best one: we should hide the views before they are added to the camera view (when the addSubview method of the camera view is called). It’s possible using Objective-C capability to replace the method dynamically at run-time. Ok, let’s replace the addSubview by our own method. In our method we can check that the passed view is one of the camera view subviews and set its’ “hidden” property to YES. So, we replace the addSubview in the viewWillAppear before the camera view is created. And we create our toolbar and Shoot button in the viewDidAppear after the camera view is created. Take a look at the code below:

// Replace “addSubview:” if called first time; hide camera controls otherwise.
– (void)viewWillAppear:(BOOL)animated {

[super viewWillAppear:animated];

if (toolBar != nil)
{
// The view was already appeared; we don’t need to subclass UIView
// but need to hide extra camera controls.
UIView *cameraView = [self findCamControlsLayerView:self.view];
if (cameraView)
{
cameraView = cameraView.superview;
int cnt = [cameraView.subviews count];
if (cnt >= 4)
{
for (int i = 2; i < cnt – 1; i++)
{
UIView *v = [cameraView.subviews objectAtIndex:i];
v.hidden = YES;
}
}
}
}
else
{
// Subclass UIView and replace addSubview to hide the camera view controls on fly.
[RootViewController exchangeAddSubViewFor:self.view];
}
}

// Exchange addSubview: of UIView class; set our own myAddSubview instead
+ (void)exchangeAddSubViewFor:(UIView*)view {

SEL addSubviewSel = @selector(addSubview:);
Method originalAddSubviewMethod = class_getInstanceMethod([view class], addSubviewSel);

SEL myAddSubviewSel = @selector(myAddSubview:);
Method replacedAddSubviewMethod = class_getInstanceMethod([self class], myAddSubviewSel);

method_exchangeImplementations(originalAddSubviewMethod, replacedAddSubviewMethod);
}

// Add the subview to view; “self” points to the parent view.
// Set “hidden” to YES if the subview is the camera controls view.
– (void) myAddSubview:(UIView*)view {

UIView *parent = (UIView*)self;

BOOL done = NO;
Class cl = [view class];
NSString *desc = [cl description];

if ([desc compare:@”PLCropOverlay”] == NSOrderedSame)
{
for (NSUInteger i = 0; i < [view.subviews count]; i++)
{
UIView *v = [view.subviews objectAtIndex:i];
v.hidden = YES;
}

done = YES;
}

[RootViewController exchangeAddSubViewFor:parent];

[parent addSubview:view];

if (!done)
[RootViewController exchangeAddSubViewFor:parent];
}

The technique described above was used in iUniqable application available from Apple App Store (Social Networking section). Feel free to use.

Feel free to visit the website of the developer www.enterra-inc.com

Vladimir Tarassyuk