Thursday, November 28th, 2013

Rev Up Your Photo workflow – Part 3 – Organizing, Fixing and Sharing images

In this final part of our workflow series we look at organizing and selecting images, fixing and sharing them.

 

Organizing and selecting images

Once you’ve imported your images, you’ll need to determine which of those you want to work with and which you will not. For this you will need to use a system that is supported by your software – it needs to be quick and easy to use so you can quickly identify the best of your photos.

If you have already backed up your images, you may determine that your master file of images will contain only the best of the images, so you might give a low rating or mark as reject any images that you don’t want to keep so you can later find and delete them. Whatever the case, you need to determine what your process is going to be and then work within this process to get the task done as quickly as possible.

For example, in Lightroom you can use the flag feature to pick or reject images as you move through them – you can do this using the letters P and X. If you use Reject (X) for images you want to delete you can later choose Photo > Delete Rejected Photos to remove them. Then you might work through the picked images and allocate a star rating to them to indicate their relative value.

In Bridge you have various options for managing images and one is to select a folder of images and choose View > Review Mode to view the images in review mode. Here you can drag and drop images from the panel to select or reject them. As you rotate around the images only those you haven’t dropped off the screen will be left in this view. This feature allows you to quickly move through your images, previewing them at a good size and determining which you want to keep or reject.

Depending how you are working, when you exit the view the images you had visible will be selected. If they are the worst images you can now delete them. If they are the best, you can, while still in Review Mode click the New Collection button in the bottom right of the screen and create a new collection for them. Back in Bridge you can right click the selected images and chose Label and then add a label or star rating to them.

In other programs such as Photoshop Elements and Picasa, you can apply star ratings to your images – in Photoshop Elements you can use 1-5 stars and in Picasa just a single star. In Picasa, click on an image or select multiple images and click the star button in the middle bottom of the Library window. When you apply a single star to an image in Picasa you can filter out only those starred images later on by clicking the star icon at the top of the program window.

 

Fixing Images

In many programs, you can apply basic fixes to multiple images at a time. For example, in Lightroom’s Library module if you are in Grid view you can select a series of images and apply one of a range of fixes to the images from the options in the Quick Develop panel. The Auto-Tone option, for example, automatically adjusts every image that you have selected with the appropriate fix for that image’s particular needs. You can also adjust the relative Exposure and Brightness and the White Balance.

In Photoshop Elements, you can select multiple images and click the Fix panel. Click Auto Smart Fix and the selected images will all have a basic fix applied to them. Here too you can choose Auto Color, Auto Levels, Auto Contrast or Auto Sharpen.

In Picasa, you can select an image and double click it to move to the edit module. When you have fixed the image you can choose Edit > Copy All Effects and then move back to the Library view. Select one or more images to apply these same changes to and choose Edit > Paste All Effects. The changes that you made to the first image will be pasted onto the other images.

Sharing images

When it comes to sharing your images some programs include built in tools that let you upload images direct to sharing sites from within the program. These integrated tools save you time – you don’t have to export the images and then upload and you can do it all in one step.

Lightroom, for example, is integrated with Facebook, Flickr and SmugMug allowing you to connect direct to your accounts with those services and upload images direct from inside Lightroom. If you are working in Picasa, you can upload direct to your web albums and you can send an image to your blog. In Photoshop Elements, you can share images in a number of ways including Flickr, Facebook and SmugMug.

 

In some cases, you may need a plug-in to integrate your software with an online site. For example the Picasa2Flickr plug-in for Picasa lets you send images direct from Picasa to Flickr. You’ll find this at http://picasa2flickr.sourceforge.net/index.html.

If you cannot link your software direct with a sharing site, look out for a download from your sharing site that lets you upload bulk images at a time such as one of the Flickr tools. While these aren’t a single step solution they can save time when you have a lot of images to upload and, if you make sure to include captions, titles and keywords in your editing program you can save having to do this when the images have been uploaded.

When it comes to managing your images, in most cases you have a choice of workflows – one that gets things done and one that gets things done efficiently and effectively. If you design a workflow that does things more quickly and more efficiently, you’ll get your shoots processed much faster and you can get back to taking more great photos.

 

Helen Bradley

Monday, November 12th, 2012

7 Cool Photoshop Layer Tricks

When you’re using layers in Photoshop for photo editing and composting you can speed up the process of working with them if you know these cool layer tricks.

1          Unlock the Background

You will already know the Background of any photo is locked and you can’t do anything much with it until you unlock it. The quickest way to unlock a background layer is from inside the Layers palette. Drag the lock icon to its right and drop it in the Trash and the Background layer will be automatically converted to a regular layer.

2          One click add a Layer

To create a new layer above the current layer click the Add New Layer icon at the foot of the Layer palette.

To add a new layer directly below the current layer Ctrl or Command Click on that icon. Both options add a layer but without displaying the Layer dialog.

3          Merge Everything to One Layer but Keep the Layers too

To merge all the current layers in the document to a single layer and at the same time to keep all the layers intact below it, click the topmost layer of the document and press Ctrl + Shift + Alt + E (Command + Option + Shift + E on the Mac). In case you are curious – it’s called Stamp Visible.

4          Select the Content on the Current Layer

To select everything on the current layer Ctrl + Click on the layer thumbnail in the Layers palette.

5          Copy a Layer to Another Document

To copy a layer from one document to another drag the layer from the Layers palette in one document and drop it into the other document. If you hold Shift as you drag the layer will be centered in the middle of the second document.

6          Quick Layer Moves

To quickly move a layer up the layer stack press Command + ] and to move it down, press Command + [.

7          Instant Delete a Layer

To instantly delete a layer, click the layer and press Delete.

Bonus Layer tip

To fill a layer or a selection with the foreground color press Alt + Backspace (Option + Delete on the Mac). Use Control + Backspace (Command + Delete on the Mac to fill the layer or selection with the Background color.

So, over to you now… what are your favorite Layer tips and tricks?

Helen Bradley

Tuesday, November 6th, 2012

Trevor’s Quick Excel Tip – Select Everything

To select an entire row or column in an Excel worksheet, click the column letter or the row number. To select multiple columns or multiple rows click and drag over the column letters or row numbers to select. To select the entire worksheet, click the empty box at the intersection of the Rows and Columns in the top left of the worksheet.

Helen Bradley

Tuesday, September 7th, 2010

Visual Basic 2008 Express – select a textbox contents

When you hand control back to a textbox in Visual Basic it’s useful if you also select the textbox contents so a user can just start typing over the current contents. Here’s how to do this – place the code in the Textbox_gotfocus event handler:

TextBox.SelectionStart = 0
TextBox.SelectionLength = Len(TextBox.Text)

How easy is that?

Helen Bradley