-
Notifications
You must be signed in to change notification settings - Fork 0
/
word_3e.html
1565 lines (883 loc) · 172 KB
/
word_3e.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<p>5</p>
<p>Making Selections</p>
<p>One of Elements’ most impressive talents is its ability to let you select part of an image and make changes to only that area. Selecting something tells Elements, “<em>This</em> is what I want to work on—don’t touch the rest of my image.”</p>
<p>You can select a whole image or any part of it. Using selections, you can fine-tune images in very sophisticated ways: Change the color of just one rose in a bouquet, for instance, or change your nephew’s festive purple hair back to something his grandparents would appreciate. Graphics pros will tell you that good selections make the difference between shoddy, amateurish work and a slick, professional job.</p>
<p>Elements includes a bunch of different selection tools. You can draw a rectangular or circular selection with the marquee tools; paint to create a selection with the Selection Brush; or just drag in your photo with the Quick Selection tool and let Elements figure out the exact boundaries of your selection. The Transform Selection command lets you resize selections in a snap, and the Refine Edge dialog box is a great help with difficult selections like hair and fur. And Elements 12 brings with it a terrific new tool: the Content-Aware Move tool lets you move an object to a different location in your photo, while analyzing the image to help it create plausible new material to fill in the hole where the object was originally. It’s explained on page xx</p>
<div style="margin-left:.5in;">
<p>Note: If you’ve used previous versions of Elements and you’re looking for the Magic Extractor, unfortunately it’s gone from Elements 12. You’ll find some workarounds on page xx.</p>
</div>
<p>For most selection jobs, there’s no right or wrong tool. With experience, you may find that you prefer working with certain tools more than others, and you’ll often use more than one tool to create a perfect selection. Once you’ve read this chapter, you’ll understand all of Elements’ different selection tools and how to use each one.</p>
<div style="margin-left:.5in;">
<p>Tip: It’s much easier to select an object that’s been photographed against a plain, contrasting background. So if you know you’re going to want to select a bicycle, for example, shoot it in front of a blank wall rather than, say, a hedge.</p>
</div>
<h1>Selecting Everything</h1>
<p>Sometimes you want to select a whole photo, like when you need to copy and paste it. Elements gives you some useful commands that help you easily make basic selections:</p>
<p><strong>Select All</strong> (Select®All or Ctrl+A/@cmd-A) tells Elements to select your whole image. You’ll see “marching ants” (Figure 5-1) around the outer edge of the picture. If you want to copy your image into another picture or program, Select All is the fastest way to go. (If the photo contains layers—which you’ll learn about in Chapter 6—you may not be able to get everything you want with the Select All command. In that case, use Edit®Copy Merged, or press Shift+Ctrl+C/Shift-@cmd-C instead.)</p>
<div>
<p><<0501.pdf>>figs/print/pe11_0501.pdf</p>
</div>
<p>Figure 5-1. The popular name for these dotted lines is “marching ants” because they march around your selections to show you where the edges lie.</p>
<p>When you see the ants, your selection is <em>active</em>, meaning that whatever you do next will apply only to the selected area.</p>
<p>· <strong>Deselect Everything</strong> (Select®Deselect, Esc, or Ctrl+D/@cmd-D) removes any current selection. Remember this keystroke combination, because it’s one you’ll probably use a lot.</p>
<p>· <strong>Reselect</strong> (Select®Reselect or Shift+Ctrl+D/Shift-@cmd-D) tells Elements to reactivate the selection you just canceled. Use Reselect if you realize you still need a selection you just got rid of (Ctrl+Z/@cmd-Z works, too).</p>
<p>· <strong>Hide/View a Selection</strong> (Ctrl+H/@cmd-H) keeps your selection active while hiding its outline. This is handy because sometimes the marching ants are distracting or make it hard to see what you’re doing. To bring the ants back, press Ctrl+H/@cmd-H a second time.</p>
<div style="margin-left:.5in;">
<p>Tip: If a tool acts goofy or won’t do anything, start your troubleshooting by pressing Ctrl+H/@cmd-H to make sure you don’t have a hidden selection you forgot about.</p>
</div>
<h1>Selecting Rectangular and Elliptical Areas</h1>
<p>Selecting a whole photo is all well and good, but many times your reason for making a selection is precisely because you <em>don’t</em> want to make changes to the whole image. How do you select just part of a picture?</p>
<p>The easiest way is to use the marquee tools. You already met the Rectangular Marquee tool back in Chapter 3 in the section on cropping (page xx). If you want to select a block, circle, or oval in your image, the marquee tools are the way to go. As the winners of the Most Frequently Used Selection Tools Award, they get top spot in the Select section of the Editor’s Tools panel in Expert mode. You can modify how they work, like telling them to create a square instead of a rectangle, as explained in Figure 5-2. Here’s how to use them:</p>
<p>1. Press M or click the marquee tools’ icon in the Tools panel.</p>
<p>The Rectangular Marquee tool is the dotted rectangle at the upper right of Select section of the Tools panel. (If you used the Elliptical Marquee tool last, you see a dotted oval instead.)</p>
<p>2. Choose the shape you want to draw: a rectangle or an ellipse.</p>
<p>At the left end of the Tool Options area, click the rectangle or the ellipse to set the shape, or just tap the M key again to switch between the two shapes.</p>
<p>3. In the Tool Options area, adjust the Feather slider if you want Elements to soften the object’s outline.</p>
<p><em>Feathering</em> makes the edges of a selection softer or fuzzier for better blending (when you’re trying, say, to replace Brad Pitt’s face with yours). The box on page xx explains how feathering works.</p>
<p>4. Drag within your image to make a selection.</p>
<p>Wherever you initially click becomes one of the corners of your rectangular selection or a point just beyond the outer edge of your ellipse (you can also draw perfectly circular or square selections, as Figure 5-2 explains). The selection’s outline expands as you drag.</p>
<div>
<p><<0502.pdf>>figs/print/pe11_0502.pdf</p>
</div>
<p>Figure 5-2. To make a perfectly circular or square selection—rather than an elliptical or rectangular one, respectively—hold down the Shift key while you drag.</p>
<p>You can reposition your selection after it’s drawn by dragging it or tapping the arrow keys on your keyboard. You can also adjust it with Elements’ Transform Selection command, which is explained on page xx.</p>
<p>If you make a mistake, just press Esc. You can also press either Ctrl+D/@cmd-D to get rid of <em>all</em> current selections, or Ctrl+Z/@cmd-Z to remove the most recent one.</p>
<p>The items in the Tool Options area’s Aspect drop-down menu give you three ways to control the size of your selection: Normal lets you manually control it; Fixed Ratio lets you enter proportions in the W (width) and H (height) boxes that appear; and Fixed Size lets you enter specific dimensions in the W and H boxes. The Anti-aliasing checkbox is explained in the box on page xx.</p>
<p>Once you’ve made a selection, you can move it around in the photo by dragging it or using the arrow keys to nudge it. And the Transform Selection command lets you drag a selection larger or smaller, or change its shape; page xx tells you how.</p>
<div style="margin-left:.25in;">
<p>UP TO SPEED</p>
<p>Paste vs. Paste Into Selection</p>
<p>Newcomers to Elements are often confused by the fact that the program has two Paste commands, Paste and Paste Into Selection. Knowing what each one does will help you avoid problems:</p>
</div>
<div>
<p>· Ninety-nine percent of the time, <strong>Paste</strong> is the one you want. This command simply places your copied object wherever you paste it. Once you’ve pasted the object, you can move it by moving the selected area.</p>
<p>· <strong>Paste Into Selection</strong> is a special command for pasting a selection into <em>another</em> selection. Your pasted object appears only <em>within</em> the bounds of the selection you paste it into. When you use this command, you can still move what you paste, but it won’t be visible anywhere outside the edges of the selection you pasted it into.</p>
</div>
<div style="margin-left:.25in;">
<p>For example, say you want to put a beautiful mountain view outside a window: First, select and copy the mountain (Ctrl+C/@cmd-C). Next, select the window, and then choose Edit®Paste Into Selection to add the view. After that, you can maneuver the mountain photo around till it’s properly centered. But if you move it outside the boundary of your window selection, it just disappears. And, once you deselect, your material is permanently in place; you can’t move it again.</p>
<p>If you understand layers (see Chapter 6), here’s another way to think about the difference: Paste creates a new layer, while Paste Into Selection puts what you paste on the existing layer.</p>
<p>Production: The second to last paragraph of the “Paste vs. Paste Into Selection” sidebar should be indented (it’s part of the bulleted list).</p>
</div>
<h1>Selecting Irregularly Sized Areas</h1>
<p>It would be nice if you could get away with making only simple rectangular and elliptical selections, but life is never that neat. If you want to change the color of one fish in your aquarium picture, for example, selecting a rectangle or an oval just isn’t going to cut it.</p>
<p>Thankfully, Elements gives you other tools that make it easy to create very precise selections—no matter their size or shape. In this section, you’ll learn how to use the rest of the selection tools. But first you need to understand the basic controls that they (almost) all share.</p>
<h2>Controlling the Selection Tools</h2>
<p>If you never make mistakes or change your mind, you can skip this section. If, on the other hand, you’re human, you need to know about the mysterious little squares you see in the Tool Options area when one of the selection tool is active (see Figure 5-3).</p>
<div>
<p><<0503.pdf>>figs/print/pe11_0503.pdf</p>
</div>
<p>Figure 5-3. These cryptic squares can save you <em>hours</em> once you understand how to use them to control the selection tools.</p>
<p>These squares don’t look like much, but they tell the selection tools how to do their jobs: whether to start a new selection with each click, to add to what you’ve already selected, or to remove things from the current selection. They’re available for all the selection tools except the Selection Brush and the Quick Selection tool, which have their own sets of options. From left to right, here’s what they do:</p>
<p>· <strong>New</strong> is the standard selection mode that you’ll probably use most of the time. When you click this button and start a new selection, your previous selection disappears.</p>
<p>· <strong>Add</strong> tells Elements to add what you select to whatever you’ve <em>already</em> selected. Unless you have an incredibly steady mouse hand, this option is a godsend because it’s not easy to get a perfect selection on the first try. (Holding down the Shift key while you use any selection tool temporarily switches you to this mode.)</p>
<p>· <strong>Subtract</strong> removes what you select next from any existing selection. (Holding down Alt/Option while selecting the area you want to remove does the same thing.)</p>
<p>· <strong>Intersect</strong> is a bit confusing. This mode lets you take a selected area, make a new selection, and wind up with only the area where the selections overlap, as shown in Figure 5-4. (The keyboard equivalent is Shift+Alt/Shift-Option.) Most people don’t need this one much, but it can be useful for things like creating special shapes. If you need a selection shaped like a quarter of a pie, for instance, create a circular selection, and then switch to “Intersect with Selection” and drag a rectangular selection from the circle’s center point. You’ll wind up with just the arc-shaped area where they intersect.</p>
<div>
<p><<0504.pdf>>figs/print/pe11_0504.pdf</p>
</div>
<p>Figure 5-4. Intersect mode lets you take two separate selections and select only the area where they intersect. If you have an existing selection, then when you select again, your new selection includes only the overlapping area.</p>
<p>Here, the top blue square was the first selection, and the bottom fuchsia square was the second. The bright green area is the final selection.</p>
<h1>Selecting with a Brush</h1>
<p>Elements gives you two very special brushes for making selections. The Selection Brush has been around since Elements 2, so if you’ve used the program before, you probably know how handy it is. But these days it often takes a backseat to the amazing Quick Selection tool, which makes even the trickiest selections as easy as doodling. The Quick Selection tool automatically finds the bounds of the objects you drag it over, while the Selection Brush selects only the area directly under your cursor. Using the Quick Selection tool in combination with the Refine Edge dialog box makes it incredibly simple to create the kinds of selections that would have driven you half crazy trying to get them right in old versions of Elements.</p>
<p>These two brushes are grouped together in the Tools panel, and they’re available in both Expert mode and Quick Fix because they’re so useful. You may well find that with these two brushes, you rarely need the other selection tools.</p>
<p>It couldn’t be easier to use the Quick Selection tool:</p>
<p>1. Activate the Quick Selection tool.</p>
<p>It shares a slot in the Tools panel’s Select section with the Selection Brush and the Magic Wand, just below the marquee tools. Click this slot in the Tools panel, and then—if the Selection Brush or Magic Wand is active instead—click the Quick Selection tool’s icon in the Tool Options area or tap the A key until you see its icon. Look carefully at the Tool Options—the Quick Selection tool looks like a wand with a dotted line around the tip and it points up; the regular Selection Brush looks like an artist’s brush and points down; and the Magic Wand icon has a yellow starburst tip.</p>
<p>2. Drag within your photo.</p>
<p>As you move the cursor, Elements calculates where it thinks the selection’s edges should be, and the selection outline (the marching ants) jumps out to surround that area. It’s an amazingly good guesser. You don’t even need to cover the entire area or go around the edges of the object—Elements does that for you.</p>
<p>This tool has a few Tool Options settings, which are explained below, but you mostly won’t need to think about them, at least not till you’ve finished making your selection. Then you’ll probably want to try using the Refine Edge dialog box (explained in the next section).</p>
<p>3. Adjust the selection.</p>
<p>Odds are that you won’t get a totally perfect selection that includes everything you wanted on the first try. To increase the selection area, drag in the direction where you want to add to the selection. A small move usually does it, and the selection jumps outward to include the area that Elements thinks you want, as shown in Figure 5-5.</p>
<div>
<p><<0505.pdf>>figs/print/pe11_0505.pdf</p>
</div>
<p>Figure 5-5. Left: It would be tough to select this water lily by hand because of the pointy-edged petals. The first drag with the Quick Selection tool produced this partial selection. Notice how well the tool found the petals’ edges.</p>
<p>Right: Another drag across the lily made Elements select the <em>whole</em> blossom. Creating this selection took less than 5 seconds. (Notice that Elements missed a little bit on the edges in a couple of spots. Reduce the brush size and drag again to add those, or switch to the regular Selection Brush to finish up.)</p>
<p>To remove an area from the selection, hold Alt/Option while dragging or clicking the area you don’t want.</p>
<p>Once you’re happy with your selection, that’s it—unless you want to tweak the edges using Refine Edge (see the next section), and you probably do.</p>
<p>The Quick Selection tool has a few Tool Options settings, but you really don’t need most of them:</p>
<p>· <strong>New, Add, Subtract</strong>. These three icons let you choose a selection mode, as described in the previous section (page xx), but you don’t need to use them. The Quick Selection tool automatically adds to your selection if you drag over an unselected area. Shift-drag to select multiple areas that aren’t contiguous, or Alt-drag/Option-drag to remove areas from your selection.</p>
<p>· <strong>Brush Settings</strong>. You can make all kinds of adjustments to your brush by clicking this drop-down menu, although you’ll rarely need to tweak any of these except maybe the brush size once in a while. The additional brush settings you find here are explained on page xx.</p>
<p>· <strong>Refine Edge</strong>. This option lets you tweak the selection’s edges so you get more realistic results when changing the selected area or copying and pasting it. (This button is grayed out until you actually make a selection.) It’s also wonderful for improving selections of things like hair or animal fur. It’s explained in detail in the next section.</p>
<p>· <strong>Sample All Layers</strong>. Turn this checkbox on, and the Quick Selection tool selects from all visible layers in your image, rather than just the active layer. (Chapter 6 explains all about layers.)</p>
<p>· <strong>Auto-Enhance</strong>. This setting tells Elements to automatically smooth out the selection’s edges. It’s a more automated way to make some of the same types of edge adjustments you can make manually with Refine Edge.</p>
<div style="margin-left:.5in;">
<p>Tip: Depending on what you plan to do with your selection, you may want to check out the Smart Brush tool. It works just like the Quick Selection tool, but it goes further than simply completing your selection for you; it <em>also</em> automatically applies the color correction or special effect you choose. See page xx for more about the Smart Brushes.</p>
</div>
<p>The Quick Selection tool doesn’t work for every selection, but it’s a wonderful tool that’s worth trying first for any irregular selection. You can use the Selection Brush or one of the other selection tools to clean up afterward, if needed, but be sure to give Refine Edge a chance to see what it can do for the edges of your selection.</p>
<h2>Refining Selection Edges</h2>
<p>The Refine Edge dialog box is another tremendously helpful Elements feature. In the days before Refine Edge, people used to spend a lot of money on fancy plug-ins that helped them create difficult selections and extractions, but now it’s amazingly simple to do even the toughest selection job right in the Refine Edge dialog box. (If you’re used to Elements 10 or earlier, you’ll find the upgraded Refine Edge does quite a lot more than it did in your old version.)</p>
<p>If you’ve ever tried selecting a girl with flyaway hair or a Golden Retriever, you know how hard it can be to get a selection that includes the edges of the hair or fur so that it doesn’t look obviously cut out. Enter the Refine Edge dialog box, which makes the most difficult selections as easy as pie, as Figure 5-6 shows.</p>
<div>
<p><<0506.pdf>>figs/print/pe11_0506.pdf</p>
</div>
<p>Figure 5-6. Left: If you want to remove this puppy from its distracting background, Refine Edge is just the ticket. Extracting the dog to use in another image would have been impossibly tough in earlier versions of Elements, but the Refine Edge dialog box makes it a snap to select soft, furry edges.</p>
<p>Right: Here’s the extracted dog against a plain background so you can see what a good job Refine Edge did.</p>
<p>You can call up the Refine Edge dialog box by clicking the Refine Edge button that appears in the Tool Options area when you activate most of the selection tools. Or you can summon it by going to Select®Refine Edge whenever you have an active selection. Either way, here’s how to use the dialog box once it’s open:</p>
<p>1. Choose how you want to view your selection.</p>
<p>Drag the Refine Edge dialog box out of the way if Elements plops it right on top of your image. Once you can see your image, you can use the dialog box’s controls to decide how to view the selection. (Your many view options are explained after this list.) Most of the time you can leave the options in the View Mode section the way Adobe set them. This section also includes a two-item toolbox to its left that contains your old friends the Hand and Zoom tools, so you can get a very precise look at how you’re changing your selection.</p>
<div style="margin-left:.5in;">
<p>Tip: If you inadvertently selected some areas that you don’t want, you’ve got a couple of options. If the unwanted area is touching the stuff you do want (for instance, the selection includes a big chunk of the floor as well as your subject), it’s best to click Cancel in the Refine Edge dialog box, edit your selection, and then open the dialog box again. But if the unwanted areas <em>aren’t</em> touching the stuff you want to keep, you can usually go back once you’re done with Refine Edge and use the Eraser tool (if you choose to output a selection—see step 3) or edit the layer mask (if you choose to output a masked layer) to get rid of the unwanted areas. Bottom line: Your selection doesn’t need to be absolutely perfect before you use the Refine Edge dialog box, but it’s going to be harder to edit the selection’s edges once you’re done with Refine Edge.</p>
</div>
<p>2. Use the options in the dialog box’s Edge Detection and Adjust Edge sections to refine your selection’s edges.</p>
<p>These tools and sliders, which are explained after this listed, let you tweak and polish the selection’s edges. Sometimes it may take Refine Edge a few seconds to catch up to you when you change one of these settings, so go slowly and watch to see just how you’re changing the edges. It usually doesn’t take much to get all the soft edges. If you go too far, you may see more of the background color bleeding through, or Elements may even decide to omit some flyaway hairs or other fine details.</p>
<div style="margin-left:.5in;">
<p>Tip: If you just want to adjust the edges of an easy-to-select object like a kayak or a toaster, you can skip right down to the dialog box’s Adjust Edge section, tweak those sliders, and then click OK. But for tricky selections, you’ll need the help of the Edge Detection settings, too.</p>
</div>
<p>3. In the Output section, use the Output To drop-down menu to choose what kind of selection you want and where you want it to appear (in the current document or a new one) once you’re done with Refine Edge.</p>
<p>You get six different choices that are all explained below. You can even save your extracted selection to a brand-new file, if you want.</p>
<p>4. When you like what you’ve done, click OK.</p>
<p>If you decide not to refine the edges after all, click Cancel. To undo all the changes you’ve made in this dialog box and start over, Alt-click/Option-click the Cancel button to turn it into a Reset button.</p>
<p>The Refine Edge dialog box is packed with options. It may look a bit confusing at first, but like most things in Elements, everything is actually very logically arranged. The dialog box is divided into four main sections: View Mode, Edge Detection, Adjust Edge, and Output. As in the Quick Fix window, you don’t need to use all the adjustments (only the ones you want), and generally your best bet is to start at the top and work down.</p>
<p>The first section, View Mode, is full of useful ways to get the best possible look at your selection. As mentioned above, you have the Hand and Zoom tools on the left, and then the View menu, which gives you seven different ways to see your selection. To see a list of your view options, click the View thumbnail. Each view has a keyboard shortcut that makes it easy to switch among them without using your mouse, or you can keep tapping the F key to cycle through them all:</p>
<p>· <strong>Marching Ants (keyboard shortcut: M)</strong> shows the regular selection outline that you normally see.</p>
<p>· <strong>Overlay (V)</strong> displays the red mask overlay you get when using the Selection Brush in Mask mode (see page xx). The red area is the <em>unselected</em> part of your image. This view is a good way to check for holes and jagged edges.</p>
<p>· <strong>On Black (B)</strong> shows just the selected area against a black background.</p>
<p>· <strong>On White (W)</strong> displays your selection against a white background. In most cases, this view works well. Refine Edge usually starts you off in this view the first time you use this feature. (After you’ve used the Refine Edge dialog box, Elements remembers which view you used last time and automatically selects it.)</p>
<p>· <strong>Black and White (K)</strong> shows only the outline of the selection in white against a black background so you aren’t distracted by the details in your image.</p>
<p>· <strong>On Layers (L)</strong> shows your selection against the transparency checkerboard (see page xx).</p>
<p>· <strong>Reveal Layer (R)</strong> shows the current layer (or the whole image if you aren’t working with layers yet) with the selection outline hidden. In other words, this view shows what you would see with no selection at all.</p>
<p>This section also includes two special checkboxes to give you even more help:</p>
<p>· <strong>Show Radius (keyboard shortcut: J)</strong>. Turn this on and you see only the outline of your selection, the part you’re adjusting with the Refine Edge tools. It’s helpful to turn this option on after you’ve used the Radius slider in the Edge Detection section; doing so lets you see exactly the area that Elements is analyzing for Smart Radius (explained below).</p>
<p>· <strong>Show Original (P)</strong>. When you turn on this setting, Elements displays your original image without a visible selection. If the image isn’t layered, you’ll see the same thing you’d see in Reveal Layer view described above. This is a great way to go back and see where you started to make sure you like what you’re doing.</p>
<p>The next section is Edge Detection. If your selection is fine except for needing a little feathering or smoothing, you can skip this section, but for tricky selections, this is where the magic starts:</p>
<p>· <strong>Smart Radius</strong>. Turn on this checkbox and Elements goes to work analyzing the edges of your selection to see whether they’re hard or soft, and figuring out what it needs to do to improve them. You can control the results (to some extent) by using the Radius setting below it. Figure 5-7 shows Smart Radius at work. (This setting may be turned on when you open the Refine Edge dialog box, but it doesn’t affect anything until you move the Radius slider, described next.)</p>
<div>
<p><<0507.pdf>>figs/print/pe11_0507.pdf</p>
</div>
<p>Figure 5-7. Left: Here’s what the edge of this rough selection looks like when you first launch Refine Edge.</p>
<p>Right: As you can see, turning on Smart Radius and adjusting the Radius setting makes Elements think a lot harder about where the real edges of the selection should be.</p>
<p>· <strong>Radius</strong>. This slider tells Elements how far from your original marching ants to search for potential edges. You can adjust this setting either by dragging the slider or clicking where it says 0.0 and typing a number of pixels. Increasing this setting will soften the edges of your selection to some extent. So if you selected the edge of a roof or other hard object, for instance, you’d want to leave this set to 0.0 (unless the roof is thatched, maybe). The fuzzier the object you selected, the further to the right you’ll probably want to move this slider.</p>
<p>There are also two special tools to the right of the Edge Detection section that can help you fine-tune your selection even more; press the E key to toggle between them:</p>
<p>· <strong>Refine Radius</strong>. If Elements isn’t quite finding everything you want to select, then run this tool over the spots on the edge of your selection where you want the program to pay more attention. This will force Elements to refine its calculations for that region, making the selection more precise. Brushing over soft edges like hair or fur, for example, increases the amount of detail in the edges of the selection.</p>
<p>· <strong>Erase Refinements</strong>. On the other hand, if Elements starts taking in too <em>much</em> of the surrounding area when you use the Refine Radius tool, this tool acts like an eraser to tell Elements to ignore the area where you drag.</p>
<div style="margin-left:.5in;">
<p>Tip: You can use the Zoom tool and the keystrokes for zooming in and out (page xx) while the Refine Edge window is onscreen, so you can get as large a view as you need to see just how you’re changing the edges of your selection.</p>
</div>
<p>As if all those features weren’t enough, the dialog box’s Adjust Edge section gives you even more ways to tweak your selection’s outline. The first two settings in this section, Smooth and Feather, are most helpful for hard-edged selections where you don’t need the other Refine Edge tools so much. To adjust the following settings, you can either drag the slider or type a number in pixels (Smooth, Feather) or a percentage (Contrast, Shift Edge).</p>
<p>· <strong>Smooth</strong>. This setting gets rid of jagged edges in your selection. Be careful: A little smoothing goes a long way. If you’ve increased the Smart Radius setting, you probably won’t want to use this option, too.</p>
<p>· <strong>Feather</strong>. Feathering (which also softens edges) is explained in the box on page xx.</p>
<p>· <strong>Contrast</strong>. Use this slider if you find that everything you’ve done to your selection has melted away all the edge differentiation between your subject and the background, and you want to increase the contrast between your selection and the surrounding area. Usually, though, you’re better off going back to the Edge Detection section and adjusting your selection there.</p>
<p>· <strong>Shift Edge</strong>. This setting adjusts the size of your selection. Move the slider left to contract the selection or right to expand it. The main use for this setting is to help when you’ve included too much of the contrasting background in your selection, although Decontaminate Colors (explained next) may be able to fix that better than this slider. However, sometimes shifting the edges a bit helps the Smart Radius feature do its job better.</p>
<p>Finally, the Output section gives you another immensely helpful tool for tweaking the coloration of your selection’s edges: the Decontaminate Colors checkbox. After all that edge adjusting, your final selection may still include some of the background color you don’t want, like the blue shirt of the person who was holding the fuzzy duckling in your original photo. Turn on this checkbox and then use the Amount slider below it to tell Elements how much to try to replace any color fringes with nearby colors (not necessarily the colors of your selection). Move the slider right and Elements changes more pixels; move it left and Elements changes fewer. Using the View menu to switch back and forth between your current view and Reveal Layer view is a good way to monitor how the Amount slider is affecting the colors in your photo.</p>
<p>The Output section also lets you send your perfected selection out for use in many different ways. After all that work refining it, you’ll want to get the most use out of your exquisite selection, so the Output To menu lets you choose what you want Elements to do when you click OK in the Refine Edge dialog box:</p>
<p>· <strong>Selection</strong> If you simply want a plain ol’ selection, only a much-improved one, choose this option.</p>
<p>· <strong>Layer Mask</strong>. If you understand layers and masks (see Chapter 6, especially page xx), then select this option and Elements will turn your selection into a mask for your original layer.</p>
<p>· <strong>New Layer</strong>. Select this option if you want to save your selected object on its own layer in your original image. Elements cuts the selection out and puts it on a transparent background in your image.</p>
<p>· <strong>New Layer with Layer Mask</strong>. Choose this and you get a duplicate layer in your image that includes a layer mask based on the selection.</p>
<p>· <strong>New Document</strong>. If you want to cut out your selected object to use on its own, this option creates a brand-new file containing nothing but your selection on a transparent background.</p>
<p>· <strong>New Document with Layer Mask</strong>. Choose this option and Elements copies the entire original layer (the one that was the basis for your selection) into a new document that includes a layer mask based on the selection.</p>
<div style="margin-left:.5in;">
<p>Note: If you used Decontaminate Colors, you can’t choose Selection or Layer Mask from the Output To menu—you have to choose one of the New Layer or New Document options instead. That’s because Decontaminate Colors changes the color of pixels in your image, so it does more than just change the edges of a selection. Adobe included this restriction to help preserve your original image.</p>
</div>
<p>There aren’t any particular Refine Edge settings that apply to every selection. Most of the time you’ll need to play around with several of its sliders to get the best result. But if you want the Refine Edge dialog box to always open with the same settings (you always want Smart Radius turned on, say), turn on the Remember Settings checkbox at the bottom of the dialog box, and the next time you launch Refine Edge, all the settings should be just the way you left them.</p>
<h2>The Selection Brush</h2>
<p>The Selection Brush is great for creating complex selections when you want to be totally in charge (without the help you get from the Quick Selection tool), and for cleaning up selections made with other tools, especially if you’re trying to fix holes within such a selection. You can use it on its own or as a complement to the Quick Selection tool.</p>
<p>The Quick Selection tool is awesome, but sometimes it doesn’t put the edges of your selection exactly where you want them. The Selection Brush gives you total control because it selects only the area you drag your cursor over. You can even let go of the mouse button, and each time you drag again, Elements automatically adds to your selection; you don’t need to change modes in the Tool Options or to hold down the Shift key, as you do with other selection tools.</p>
<p>The Selection Brush also has a Mask mode, in which Elements highlights what <em>isn’t</em> part of your selection, which is great for finding tiny spots you’ve missed and for checking the accuracy of your selection’s outline. In Mask mode, anything you paint over gets <em>masked</em> out; in other words, it’s protected from being selected. Masking is a little confusing at first, but you’ll soon see how useful it is. Figure 5-8 shows the same selection made with and without Mask mode.</p>
<div>
<p><<0508.pdf>>figs/print/pe11_0508.pdf</p>
</div>
<p>Figure 5-8. Left: This flower was selected by painting with the Selection Brush in Selection mode. It looks just like the selections you can make using any of the selection tools.</p>
<p>Right: The same selection in Mask mode. The red covers everything that’s <em>not</em> part of the selection.</p>
<p>The Selection Brush is pretty simple to use:</p>
<p>1. Click the Selection Brush’s icon in the Tools panel or press A.</p>
<p>You may not see the Selection Brush at first because it shares a Tools panel slot with the Quick Selection tool and the Magic Wand. If you see one of those tools’ icons instead, just click it, then click the Selection Brush’s icon in the Tool Options area; it’s the brush that looks like it’s painting—its tip points down.</p>
<p>2. In the Tool Options area, choose either Selection mode or Mask mode and the brush size and hardness you want.</p>
<p>Your Tool Options choices are explained after this list.</p>
<p>3. Drag over the area you want to select.</p>
<p>If you’re in Selection mode, the area you drag over becomes part of your selection, and Elements puts marching ants around it. If you’re in Mask mode, the area you drag over is <em>excluded</em> from becoming part of your selection, and Elements puts a red film over it.</p>
<p>The Selection Brush gives you several Tool Options choices:</p>
<p>· <strong>Mode</strong>. This unlabeled drop-down menu is where you tell Elements whether you want to create a selection (Selection) or exclude an area from being part of a selection (Mask).</p>
<p>· <strong>Brush thumbnail</strong>. Click the triangle to the right of this squiggly line to choose from lots of different brushes. (For more about brushes, see page xx.)</p>
<p>· <strong>Size</strong>. To change the brush cursor’s size, drag this slider or click the pixel value and then type in a new one. Or press the close bracket key (]) to enlarge the cursor (keep tapping it until you get the size you want) or the open bracket key ([) to shrink it. You can also put your cursor over the word “Size” and scrub to the left or right to make the brush smaller or larger, respectively. (Don’t know how to scrub? For more on this nifty feature, see page xx.)</p>
<div style="margin-left:.5in;">
<p>Tip: The bracket key shortcuts work with any brush, not just the Selection Brush.</p>
</div>
<p>· <strong>Hardness</strong>. This setting controls the sharpness of the brush cursor’s edge, which affects your selection (see Figure 5-9).</p>
<div>
<p><<0509.pdf>>figs/print/pe11_0509.pdf</p>
</div>
<p>Figure 5-9. These two brushstrokes show the way the Hardness setting affects the edges of a selection. Here, two different selections were made in the green rectangle. The top selection was made at 100 percent hardness, and the bottom one at 50 percent hardness. (The selected area was then deleted to show the outline more clearly.)</p>
<p>Switching between Selection and Mask mode is a good way to see how well you’ve done when you finish making a selection. In Mask mode, the areas of your image that <em>aren’t</em> part of the selection have a red film over them, so you can clearly see the selected area.</p>
<div style="margin-left:.5in;">
<p>Tip: You don’t have to live with a red mask. To change the mask’s color, in the Tool Options area, click the color square below the Overlay slider (the Selection Brush has to be active and in Mask mode for this setting to appear). In the window that pops up, either click a color swatch or click the multicolored circle in the window’s bottom right, and then use the Color Picker to choose a different hue. You can also tweak the Overlay setting in the Tool Options area to adjust how well your image shows through the mask.</p>
</div>
<p>You can temporarily make the Selection Brush do the opposite of what it’s been doing by holding down Alt/Option while you drag. This can save a lot of time when you’re making a tricky selection, since you don’t have to keep hopping down to the Tool Options area to change modes, and you can keep the view (either your selection or the mask) the same. For example, if you’re in Selection mode and you’ve selected too large an area, Alt-drag/Option-drag over the excess to remove it. If you’re masking out an area, Alt-drag/Option-drag to add to the selection. This may sound confusing, but it’ll make sense once you try it. Some things are easier to learn by doing.</p>
<div style="margin-left:.5in;">
<p>Tip: The Selection Brush is useful for fine-tuning selections you’ve made with the other selection tools. Quickly switching to the Selection Brush in Mask mode is a great way to check for spots you’ve missed—the red makes it really easy to spot them.</p>
</div>
<h2>The Magic Wand</h2>
<p>The Magic Wand is a slightly temperamental—and occasionally highly effective—tool for selecting an irregularly shaped but uniformly colored (or nearly so) part of an image. If there’s a big area of a particular color, the Magic Wand can find its edges with one click. This tool isn’t actually all that magical: All it does is search for pixels with similar color values. But if it works for you, you may decide Adobe should keep “magic” in this tool’s name because it’s a great timesaver when it cooperates, as Figure 5-10 shows.</p>
<div>
<p><<0510.pdf>>figs/print/pe11_0510.pdf</p>
</div>
<p>Figure 5-10. Just one click with the Magic Wand created this nearly perfect selection of this blue pipeline.</p>
<p>If there <em>isn’t</em> a big difference between the color of the area you want to select and the colors of neighboring areas, this tool won’t be as effective as it was here.</p>
<p>You’ll find the Magic Wand in the same Tools panel slot as the Quick Selection tool and the Selection Brush, just below the marquee tools. Its icon is an upward-pointing wand with a yellow starburst tip. To activate it, either press the A key repeatedly or, in the Tools panel, click the icon for whichever tool from the group is visible and then click the Wand’s icon in the Tool Options area.</p>
<p>Using the Magic Wand is pretty straightforward: Just click anywhere in the area you want to select. Depending on the Wand’s <em>tolerance</em> setting (explained in the following list), you may nail the selection right away, or it may take several clicks to get everything. If you need to click more than once, remember to hold down Shift so that each click adds to your selection.</p>
<p>As mentioned above, the Magic Wand does best when you offer it a good, solid block of color that’s clearly defined and doesn’t have a lot of different shades in it. But it’s frustrating to use to select colored areas that have any shading or tonal gradations—you have to click and click and click.</p>
<p>Elements includes some special Tool Options settings that can help the Wand do a better job:</p>
<p>· <strong>Tolerance</strong> controls how many shades the tool selects. A higher setting includes more shades (resulting in a larger selected area), while a lower setting gets you fewer shades (and a more precise selection). If you set the tolerance <em>too</em> high, you’ll probably select a lot more of your image than you want.</p>
<p>· <strong>Sample All Layers</strong>. If you have a layered file (you’ll learn about layers in the next chapter), turn this checkbox on to make the Wand select the color in <em>all</em> the image’s layers. If you want it to select the color only in the active layer, then leave this setting turned off.</p>
<p>· <strong>Contiguous</strong> makes the Magic Wand select only similarly colored areas touching one another. This checkbox is on by default, but sometimes you can save a lot of time by turning it off, as Figure 5-11 explains.</p>
<div>
<p><<0511.pdf>>Left: wandA.tif; Right: wandB.tif</p>
</div>
<p>Figure 5-11. Left: Here, the Contiguous checkbox is turned on, so the Magic Wand only selects the red part of the flower you click with it.</p>
<p>Right: By turning this setting off, you can select <em>all</em> the areas of that shade of red with just one click. Then you can use the Selection Brush (page xx) to quickly clean up the selection.</p>
<p>· <strong>Anti-aliasing</strong> is explained in the box on page xx.</p>
<p>The Tool Options for the Magic Want also give you access to the Refine Edge dialog box so you can fix up the edges of your selection, as explained on page xx.</p>
<p>The big disadvantage to the Magic Wand is that it tends to leave unselected, contrasting areas around the edge of your selection that are a bit of a pain to clean up. So you may want to give the Quick Selection tool (page xx) a spin before trying the Magic Wand, especially if your goal is to select a range of colors. However, if you put a Magic Wand selection on its own layer (see Chapter 6), you can use Refine Edge or the Defringe command (page xx) to help clean up the edges.</p>
<div style="margin-left:.25in;">
<p>UP TO SPEED</p>
<p>Feathering and Anti-Aliasing</p>
<p>If you’re old enough to remember what supermarket tabloid covers looked like before Photoshop, you probably had a good laugh at the obviously faked photos. Anyone could see where the art department had physically glued a piece cut from one photo onto another picture. Nowadays, the pictures of Brangelina’s vampire baby from Mars look <em>much</em> more believable because Photoshop (and Elements) let you add anti-aliasing and feathering when you make selections.</p>
<p><em>Anti-aliasing</em> is a way of smoothing the edges of a digital image so they don’t look jagged. When you make selections, the Lasso tools and the Magic Wand let you decide whether to use anti-aliasing. It’s best to leave anti-aliasing on unless you want a really hard-looking edge on your selection.</p>
<p><em>Feathering</em>, on the other hand, blurs the edges of a selection. When you make a selection that you plan to move to a different photo, a tiny bit of feathering can do a lot to make it look like it’s always been part of the new photo. Some selection tools, like the marquee tools, let you set a feather value before you use them. And you can feather <em>existing</em> selections by choosing Select®Feather or pressing Alt+Ctrl+D/Option-@cmd-F.</p>
<p>Generally, a 1- or 2-pixel feather gives your selection a natural-looking edge without visible blurring. A larger feather gives a soft edge to photos, as you can see in Figure 5-12. If you apply a feather value that’s too high for the size of your selection, you see a warning that reads, “No pixels are more than 50% selected.” Reduce the feather number to placate Elements.</p>
<p>Production: Please keep Figure 5-12 next to the “Feathering and Anti-Aliasing” sidebar.</p>
</div>
<div>
<p><<0512.pdf>>figs/print/pe11_0512.pdf</p>
</div>
<p>Figure 5-12. Old-fashioned vignettes like this one are classic examples of when you’d want a fairly large feather. In this image, the feather is 15 pixels wide. The higher the feather value, the softer the edge.</p>
<p>(Incidentally, there’s also a Vignette Effect in Guided Edit if you need more help.)</p>
<h2>The Lasso Tools</h2>
<p>The Magic Wand is pretty handy, but it works well only when your image has clearly defined areas of color. If you want to select something from a cluttered background, the Magic Wand just won’t cut it. In cases like that, the easiest option is to draw around the object you want to select.</p>
<p>Enter the Lasso tool. Elements actually has <em>three</em> lasso tools: the Lasso, the Polygonal Lasso, and the Magnetic Lasso. Each one lets you select an object by tracing around it.</p>
<p>You activate the lasso tools by clicking their icon in the Tools panel’s Select section (just below the Move tool), and then selecting the particular variation you want in the Tool Options area, or by repeatedly pressing the L key till you see the right tool. Then simply drag around the outline of an object to make your selection. The following sections cover each lasso tool in detail. All three let you apply feathering and anti-aliasing as you make a selection (see the box below), and the basic Lasso and Polygonal Lasso give you access to Refine Edge (page xx) right in their Tool Options settings.</p>
<h3>The Basic Lasso Tool</h3>
<p>Using the basic Lasso tool is simple: Activate it (your cursor changes to the lasso shape shown in Figure 5-13) and then click your photo and drag around the outline of what you want to select. When the end of your outline gets back around and joins up with the beginning, you’ve got a selection. (If the start and end points don’t meet up, then when you let go of your mouse, Elements connects them with a straight line, which may not be what you want.)</p>
<div>
<p><<0513.pdf>>figs/print/pe11_0513.pdf</p>
</div>
<p>Figure 5-13. The end of the cursor’s “rope,” not the lasso’s loop, is the selection-drawing part of the basic Lasso tool.</p>
<p>If this cursor shape bothers you, then press the Caps Lock key to change it to crosshairs instead.</p>
<p>It’s not always easy to make an accurate selection with the Lasso, especially if you’re using a mouse. A graphics tablet (page xx) is a big advantage when using this tool, since tablets let you draw with a pen-shaped stylus. But even if you don’t have a graphics tablet lying around, you can make all of Elements’ tools work just fine with your mouse once you get used to their quirks.</p>
<p>It helps to zoom way in and go very slowly when using the Lasso. (See page xx for info on changing your view.) Many people use the regular Lasso tool to quickly select an area that roughly surrounds an object (as in Figure 5-13), and then go back with the other selection tools—like the Selection Brush or the Magnetic Lasso—to clean things up.</p>
<div style="margin-left:.5in;">
<p>Tip: If you need to draw a straight line for part of your selection border, hold down Alt/Option and click the points where you want the line to start and end. So if you’re selecting an arched Palladian window, for instance, once you get around the curve at the top and reach the straight side, press Alt/Option and click at the bottom of the side to get the whole side all in one go. You need to have already clicked in your image with the tool at least once before you press this key, though, or this trick won’t work.</p>
</div>
<p>Once you’ve created a selection, you can click the Refine Edge button in the Tool Options area to adjust and feather the edges (see page xx). Press Esc or Ctrl+D/@cmd-D to get rid of your selection if you decide you don’t want it anymore.</p>
<h3>The Magnetic Lasso</h3>
<p>The Magnetic Lasso is a very handy tool, especially if you were the kind of kid who could never color inside the lines or cut paper chains out neatly. This tool snaps to the outline of any clearly defined object you’re trying to select, so you don’t have to follow the edge exactly.</p>
<p>As you might guess, the Magnetic Lasso works best on objects with well-defined edges, so you won’t get much out of it if your subject is a furry animal, for instance. This tool also likes a good, strong contrast between the object and the background.</p>
<p>To use this tool, click to start a selection, and then move your cursor around the perimeter of what you want to select. (Just as with the basic Lasso tool, you can change the cursor’s shape by pressing the Caps Lock key.) Then double-click back where you began to finish your selection. You can also Ctrl-click/@cmd-click at any point, and the Magnetic Lasso will immediately close up whatever area you’ve surrounded by drawing a straight line from the last anchor point to where you started. The Tool Options settings let you adjust how many <em>anchor points</em> the Magnetic Lasso puts down and how sensitive it is to the edge you’re tracing, as shown in Figure 5-14.</p>
<div>
<p><<0514.pdf>>figs/print/pe11_0514.pdf</p>
</div>
<p>Figure 5-14. One nice thing about the Magnetic Lasso is that it’s easy to back up as you’re creating a selection.</p>
<p>As you drag, this tool lays down tiny boxes called anchor points, as shown here. If you make a mistake, pressing Backspace/Delete takes you back one point each time you press the key. (If you want to completely get rid of a Magnetic Lasso selection you’ve begun but not completed, press Esc.)</p>
<p>If the Magnetic Lasso skips a spot or won’t grab onto a spot you want it to, you can force it to put down an anchor point by clicking once where you want the point to go.</p>
<p>In addition to Feather and Anti-aliasing (explained in the box on page xx), the Magnetic Lasso has four other Tool Options settings:</p>
<p>· <strong>Width</strong> tells the tool how far to look when it’s trying to find an edge. This value is in pixels, and you can set it as high as 256.</p>
<p>· <strong>Contrast</strong> controls how sharp a difference the Magnetic Lasso should look for between the object’s outline and its background. A higher number makes Elements look for sharper contrasts, and a lower number makes it look for softer ones.</p>
<p>· <strong>Frequency</strong> controls how often Elements puts down anchor points (Figure 5-14).</p>
<p>· <strong>Use tablet pressure to change pen width</strong>—the little icon of a pen tip at the right of the other Tool Options settings—works only if you have a graphics tablet (page xx). When you turn this setting on, how hard you press with the stylus controls how Elements searches for the edge of objects you’re trying to select: When you bear down harder, it’s more precise (in other words, it doesn’t look as far); when you press more lightly, you can be a bit sloppier, and Elements will still find the edge.</p>
<p>Many people live full and satisfying lives paying no attention whatsoever to these settings, so don’t feel that you have to fuss with them. You can usually ignore them unless the Magnetic Lasso misbehaves.</p>
<div style="margin-left:.5in;">
<p>Tip: You get better results with the Magnetic Lasso if you go more slowly than if you speed around an object. Like most people, the Magnetic Lasso does better work if you give it time to be sure where it’s going.</p>
</div>
<h3>The Polygonal Lasso</h3>
<p>At first, this may seem like a totally useless tool. It works something like the Magnetic Lasso in that it puts down anchor points (though you have to click each time you want it to add an anchor point and you don’t see the boxes for each point like you do with the Magnetic lasso [see Figure 5-14]), but it creates only perfectly straight line segments. So you may think, “That’s great if I want to select a stop sign, but otherwise, what’s the point?”</p>
<p>Actually, if you’re one of those people who just plain <em>can’t</em> draw, and you even have a hard time following the edge of an object onscreen, this is the tool for you. The trick is to move your cursor very short distances between clicks. Figure 5-15 shows the Polygonal Lasso in action.</p>
<p>The big advantage of this tool over the Magnetic Lasso is that it’s much easier to keep it from getting into a snarl. Your only Tool Options settings for this tool are Feather and Anti-aliasing (which are explained in the box on page xx), as well as Refine Edge (page xx).</p>
<div>
<p><<0515.pdf>>figs/print/pe11_0515.pdf</p>
</div>
<p>Figure 5-15. If you have limited dexterity, the Polygonal Lasso tool and a lot of clicks eventually get you a nice, accurate selection. You just need to zoom way, way in to use this tool to select an object that doesn’t have totally straight sides.</p>
<p>Here, the Polygonal Lasso easily made it around the curve of this stone by clicking to make extremely short segments.</p>
<h1>Extracting Objects</h1>
<p>Ever feel the urge to pluck an object out of a photo so you can use it on its own or somewhere else? For example, maybe you want to take an amazing shot you got of the moon and stick it in another photo. For several versions, Elements included the Magic Extractor to help you with this task, but that feature is gone in Elements 12. However, you still have plenty of options for extracting objects, beginning with the traditional method: Double-click your Background layer to make it a regular layer (or you won’t get transparent areas around the object; page xx has more on this), make your selection, invert it (page xx), and then delete the rest of the image. You can also use the handy Defringe Layer command, explained in Figure 5-16, to clean up any messy contrasting pixels around the edge of the object.</p>
<div>
<p><<0516.pdf>>figs/print/pe11_0519.pdf</p>
</div>
<p>Figure 5-16. Defringing is a big help in cleaning up the edges of selections.</p>
<p>Top: Here’s a close-up of the edge of an extracted object (the hat of a figurine). The matte black background makes the ragged edges of the hat stand out. If you place this image into another graphic, it’ll look like you cut it out with dull nail scissors.</p>
<p>Bottom: Here you can see how much softer the edges are after applying some defringing. Now you can place the figurine into another file without getting a cut-out effect; the hat will blend in believably. You can use this command on any layer by going to Enhance®Adjust Color®Defringe Layer.</p>
<p>Another option is to give the Refine Edge dialog box (page xx) first crack at extracting your object, especially if it’s got tricky edges. Refine Edge can do fancy extracting, including saving your extracted object to a masked layer or a new document, so this can also substitute for the Magic Extractor.</p>
<p>If you plan to use the object in another image, you can simply select it, press Ctrl+C/@cmd-C to copy it, click the image where you want to put it, press Ctrl+V/@cmd-V to paste it in, and then use the Move tool (page xx) to arrange it precisely.</p>
<h1>Changing and Moving Selections</h1>
<p>Now that you know all about making selections, it’s time to learn some of the finer points of using and manipulating them. Elements gives you several options for changing the areas you’ve selected and for moving objects around after you select them. You can even save a tough selection so that, if you need it again later, you don’t have to go to all the trouble of recreating it. This section has the lowdown.</p>
<h2>Inverting a Selection</h2>
<p>One thing you often want to do with a selection is <em>invert</em> it. That means telling Elements, “You know the area I’ve selected? I want you to select everything <em>except</em> that area.” Why would you want to do that? Because sometimes it’s easier to select what you <em>don’t</em> want. For example, suppose you have an object with a complicated outline, like the building in Figure 5-17. If you want to use just the building in a scrapbook of your trip to Europe, it’s going to be difficult to select. But the sky is just one big block of color, so it’s easy to select the sky with the Magic Wand.</p>
<div>
<p><<0517.pdf>>figs/print/pe11_0520.pdf</p>
</div>
<p>Figure 5-17. Top: Say you want to make some adjustments to this building. You could spend half an hour meticulously selecting all that Gothic detail, or just select the sky with a couple of clicks of the Magic Wand and then invert your selection to get the building. Here, the marching ants around the sky show that it’s the active selection—but that’s not what you want.</p>
<p>Bottom: Inverting the selection (Select®Inverse) puts the ants around the building instead, without you going to the trouble of tracing over all the elaborate, lacy details of the roofline.</p>
<p>To invert a selection, simply make a selection with any tool that suits your fancy, and then go to Select®Inverse or press Shift+Ctrl+I/Shift-@cmd-I. Now the part of your image that you <em>didn’t</em> select is selected. Easy, huh?</p>
<h2>Resizing a Selection</h2>
<p>What if you want to tweak the size of your selection? For example, say you want to move the outline of your selection outward a few pixels to expand it. Elements gives you a really handy way to do that: the Transform Selection command.</p>
<p>With Transform Selection, you can easily drag any selection larger or smaller, rotate it, squish it narrower or shorter, or pull it out longer or wider (imagine smooshing a circular selection into an oval, for instance). As its name implies, Transform Selection does all these things to the <em>selection</em>, not to the object you’ve selected. (If you want to distort an object, you can use the Move tool [page xx] or the Transform commands [page xx] instead.) This is really handy, as you can see in Figure 5-18.</p>
<div>
<p><<0518.pdf>>figs/print/pe11_0521.pdf</p>
</div>
<p>Figure 5-18. Left: Sometimes it’s tough to draw exactly the selection you want. Here, attempting to avoid the sign and the palm fronds led to cutting off part of the rope bumper on the boat’s bow.</p>
<p>Right: After you’ve decided that it would be easier to clone out any unwanted fronds (page xx explains how), Transform Selection makes it easy to resize the selection to include the whole rope.</p>
<p>To use Transform Selection:</p>
<p>1. Make a selection.</p>
<p>Use the selection tool(s) of your choice. Transform Selection is especially handy when you’ve used one of the marquee tools and didn’t get the selection quite right.</p>
<p>2. Go to Select®Transform Selection.</p>
<p>A bounding box with little square handles appears around your selection, as shown in Figure 5-18. (The bounding box is rectangular even if your selection is some other shape.) The Tool Options change to show the settings for this feature, which are the same as those for the Transform tools (page xx). Most of the time, you won’t need to worry about these settings.</p>
<p>3. Drag the bounding box’s square handles and adjust the area covered by your selection.</p>
<p>The different ways you can adjust a selection are explained after this list.</p>
<p>4. When you get everything just right, click the green checkmark or press Enter/Return to accept your changes.</p>
<p>If you mess up or change your mind about the whole thing, click Cancel (the red No symbol) or press Esc to revert to your original selection.</p>
<p>You can change your selection in most of the same ways you learned about back in the section on cropping (page xx):</p>
<p>· <strong>To make the selection wider or narrower</strong>, drag one of the side handles.</p>
<p>· <strong>To make the selection taller or shorter</strong>, drag a top or bottom handle.</p>
<p>· <strong>To make the selection larger or smaller</strong>, drag a corner handle. Before you start, take a quick look at the Tool Options to be sure the Constrain Proportions checkbox is turned on if you want the selection’s shape to stay exactly the same. If you want the shape to change (get smooshed or stretched), then turn this checkbox off.</p>
<p>· <strong>To rotate the selection</strong>, move your cursor near a corner handle till you see the curved arrows, and then click and drag to spin the selection’s outline to the angle you want.</p>
<p>Transform Selection is a great feature, but it only expands or contracts your selection in the same ways the Transform tools can change things. In other words, you can change the selection’s width, height, and proportions, but you can’t change a star-shaped selection into a dog-shaped one, for example. (In that situation, you should simply start a new selection from scratch.) Elements gives you a number of other ways to adjust a selection’s size, which may work better for you in certain situations, although in most cases Transform Selection is probably the easiest.</p>
<p>But what do you do if you just want to enlarge the selection to include surrounding areas of the same color? Elements has you covered. Figuring out which of the following commands to use can be confusing because the two ways to enlarge a selection sound really similar: Grow and Expand. You might think they do the same thing, but there’s a slight but important difference between them, as Figure 5-19 shows:</p>
<p>· <strong>Grow</strong> (Select®Grow) moves your selection outward to include more similar, contiguous colors, no matter what shape your original selection was. This command doesn’t care about shape; it just finds more matching contiguous pixels.</p>
<p>· <strong>Expand</strong> (Select®Modify®Expand) preserves the shape of your selection and just enlarges it by the number of pixels you specify.</p>
<p>· <strong>Similar</strong> (Select®Similar) does the same thing as Grow but looks at <em>all</em> the pixels in your image, not just ones adjacent to the current selection.</p>
<p>· <strong>Contract</strong> (Select®Modify®Contract) shrinks a selection by the number of pixels you specify.</p>
<div>
<p><<0519.pdf>>figs/print/pe11_0522.pdf</p>
</div>
<p>Figure 5-19. Top: Here’s the original selection. The butterfly’s wing is selected, but Elements missed some small areas on the edge. (The area outside the selection was deleted to make it easier to see what’s selected.)</p>
<p>Bottom left: If you use Grow to enlarge the selection, you also get parts of the background that are similar in tone. As a result, your selection isn’t wing-shaped anymore.</p>
<p>Bottom right: If you use Expand instead, the selection still is still shaped like the wing, but the edges of the selection have moved outward to include the dark border area you missed the first time. Here the selection moved out more than you’d want—it took in some of the background—but Elements preserved the shape of the original selection.</p>
<div style="margin-left:.25in;">
<p>POWER USERS’ CLINIC</p>
<p>Smoothing and Bordering</p>
<p>Most of the time, you’ll probably use Refine Edge to fine-tune your selections, but Elements gives you two other ways to tweak selection outlines:</p>
</div>
<div>
<p>· <strong>Smoothing</strong> (Select®Modify®Smooth) is a not-always-dependable way to clean up ragged spots in a color-based selection (the kind you’d make with the Magic Wand, for instance). You enter a pixel value in the Smooth Selection dialog box, and Elements evens out your selection based on that number by searching for similarly colored pixels.</p>
</div>
<div style="margin-left:.25in;">
<p>For example, if you enter <em>5</em>, Elements looks at a 5-pixel radius around each pixel in your selection. In areas where most of the pixels are already selected, it adds in the others. In areas where most pixels <em>aren’t</em> selected, it deselects the ones that were selected to get rid of jagged edges and holes in the selection. This is handy, but smoothing is sometimes hard to control. Usually it’s easier to clean up your selection by hand with the Selection Brush.</p>
</div>
<div>
<p>· <strong>Bordering</strong> (Select®Modify®Border) adds an anti-aliased, transparent border to your selection. You can think of this command as selecting the selection’s outline. You might use it when your selection’s edges are too hard and you want to soften them, although you’re probably better off using Refine Edge instead. But if you go this route, enter a border width in the Border Selection dialog box and then click OK. Elements then selects only the border of your selection, so you can also apply a slight Gaussian blur (see page xx) to soften that part of the photo.</p>
</div>
<div style="margin-left:.25in;">
<p>Production: The third paragraph of the “Smoothing and Bordering” sidebar should be indented (it’s part of the “Smoothing” bullet point).</p>
</div>
<h2>Moving Selected Areas</h2>
<p>So far you’ve learned how to move selections themselves (the marching ants), but often you make selections because you want to move <em>objects</em> around—like putting that dreamboat who wouldn’t give you the time of day next to you in a class photo. There are several ways to do this, even without using any special tool, but in Elements 12, you’ll probably want to try out the exciting new Content-Aware Move tool, described on page xx. For now, here’s the simplest, tool-free way to move something from one image to another:</p>
<p>1. Select the object you want to move.</p>
<p>Make sure you’ve selected everything you want—it’s really annoying when you paste a selection from one image to another and then find that you missed a spot.</p>
<p>2. Press Ctrl+C/@cmd-C to copy it.</p>
<p>You can use Ctrl+X/@cmd-X if you want to cut it out of your original; just remember that Elements leaves a hole if you do that.</p>
<p>3. Decide where to put the selected object.</p>
<p>If you want to dump the object into its very own document, choose File®New®“Image from Clipboard.” Doing so creates a new document with just your selection in it. If you want to place the object into an existing photo, then use Ctrl+V/@cmd-V to paste it into another image in Elements, or even into a document in another program.</p>
<div style="margin-left:.5in;">
<p>Tip: You can also use Refine Edge to select, cut out, and paste your object into a new file, all in one go. Flip back to page xx to learn how.</p>
</div>
<p>Once the object is where you want it, you can use the Move tool (explained on page xx) to position it, rotate it, or scale it to fit the rest of the photo.</p>
<div style="margin-left:.5in;">
<p>Tip: If you copy and paste a selection and then notice that it’s got partially transparent areas in it, back up and go over your selection with the Selection Brush using a hard brush cursor. Then copy and paste again.</p>
</div>
<h3>The Content-Aware Move Tool</h3>
<p>Elements 12 includes two Move tools that you can use to arrange things in your photos. The traditional Move tool has been at the top of the Elements toolbox as long as the program has existed, and you’ll still prefer that tool in some situations, especially when working with layers, which are explained in the next chapter. But if you want to move an object from one place in your photo to another, or to duplicate objects, you definitely want to try the new Content-Aware Move tool first, since it makes it super easy to get seamless, plausible results most of the time. Plus it’s extremely easy to use:</p>
<p>1. Activate the Content-Aware Move tool.</p>
<p>Press Q or click this tool’s icon in the Tools panel (the crossed arrows in the Modify section).</p>
<p>2. Decide whether you want to move the object or copy it.</p>
<p>If you want to move it from its original location, in the Tool Options area, click the Move radio button. If you want to move a <em>copy</em> instead, click the Extend radio button. Figure 5-20 shows the difference.</p>
<div>
<p><<0520.pdf>>To come</p>
</div>
<p>Figure 5-20. Top: If you click the Move radio button and drag this whatever, Elements does a great job of filling in the empty space where it was.</p>
<p>Bottom: If you want to move a duplicate whatever, click the Extend radio button and then Elements makes a copy and leaves the original where it was.</p>
<p>3. Click in the photo and drag to make a selection around the object you want to move.</p>
<p>This selection doesn’t have to be very precise, but if there’s a nearby detail you really don’t want to include, try to avoid it when making your selection. For instance, if you’re moving or duplicating a flag from one spot on a roof to another, including some of the sky is no big deal, but you want to be careful around the roofline, since if you drag a piece of the roof along with the flag, it may not match up to the existing roofline in the new spot.</p>
<p>The Tool Options area include the usual squares for adding to and subtracting from selections (page xx), but you probably won’t need to use them much. Be aware, however, that if you create a selection with this tool and then click in your photo <em>outside</em> the selection, you lose the selection you had and start a new one. (Press Ctrl+Z/@cmd-Z if you do this by mistake.)</p>
<p>4. Once you see the marching ants around your object, drag it to its new home.</p>
<p>It may take a minute to see the final result, but Elements analyzes the area where the object <em>was</em> and does its best to seamlessly blend the moved object into the new area. If you aren’t satisfied with the location, you can keep dragging the selection around as long as you see the marching ants.</p>
<p>If you selected the Move option in step 2 above, Elements creates new material to fill in the area where the object used to be.</p>
<p>5. If necessary, use the Healing slider to adjust Elements’ handiwork.</p>
<p>The Tool Option area’s Healing slider tells Elements how much area to consider when blending the object into its new spot and filling the spot where it was. If Elements picks up too much detail from around the object, move the slider to left. If Elements doesn’t include enough detail from the surrounding material, move the slider to the right.</p>
<p>If you’re using the tool’s Move mode, as you move this slider, be sure to watch both the area around the moved object <em>and</em> the area where it came from. (With Extend mode, it doesn’t matter so much.)</p>
<p>The one disadvantage to this tool is that, once you drag the object, as soon as you let go of your mouse button, your moved object merges into the photo. You don’t get an opportunity to resize it or flip the object if, for instance, you need to duplicate an eye in a damaged photo. However, there is a workaround, if you understand layers (which are explained in the next chapter): put the moved object on its own layer. To do that, before you start using the Content-Aware Move tool, create a new layer (choose Layer®New Layer or press Shift+Ctrl+N/Shift-@cmd-N). Then, activate the tool and make sure that Sample All Layers is turned on in the Tool Options area. That will put the moved object on a separate layer, making it easy to grab with the regular Move tool (explained next) so that you can flip it, rotate it to a better angle, resize it, and so on. If you don’t create a new layer, once you move your object, it immediately becomes part of the existing layer, so there’s no opportunity to do anything like, say, flipping a table leg over if you’re replacing one that’s missing.</p>
<div style="margin-left:.5in;">
<p>Note: If you use this layer trick with the Extend radio button turned on, then only the moved area appears on the new layer and it’s very easy to choose that layer and make changes to it. However, if the <em>Move</em> radio button is turned on, then your new layer will get material from both the moved object <em>and</em> the stuff that Elements creates to fill the hole where the object was, so you need to be careful to select only the moved object if that’s all you want change. Turning off the Background layer’s visibility (page xx) can help you see what you’re doing.</p>
</div>
<h3>The Move Tool</h3>
<p>You can also move things around within a photo using the Move tool, which also lets you cut or copy selected areas (but unlike the Content-Aware Move tool, this tool doesn’t do anything about the hole left behind if you move an object without copying it). The big advantage of the Move tool is that you can resize the object you’re moving or adjust it by using the Transform tools (page xx). Figure 5-21 shows how to use the Move tool to conceal distracting details.</p>
<div>
<p><<0521.pdf>>figs/print/pe11_0523.pdf</p>
</div>
<p>Figure 5-21. Left: To get rid of the meter-access hatch in this photo to keep it from drawing attention away from the lovely flowerboxes, select a piece of the sidewalk, and then activate the Move tool and hold down the Alt/Option key while dragging to copy the selected area. (If you use the Move tool <em>without</em> holding down Alt/Option, Elements cuts out the selection instead, leaving a hole in your photo.)</p>
<p>Right: After using the Clone Stamp (page xx) to blend in the new piece, you’d never know that slab of sidewalk wasn’t solid.</p>
<p>The Move tool lives at the top left of the Tools panel’s Select section. To use it to relocate an object, first select the object, and then:</p>
<p>1. Activate the Move tool.</p>
<p>Click the Move tool’s icon or press V. Your selection stays active but is now surrounded by a rectangle with square handles on it.</p>
<p>2. Move the selection and then, when you’re satisfied with its position, press Enter/Return.</p>
<p>As long as the selection is active, you can work on your photo in other ways and then come back and reactivate the Move tool. (If you’re worried about losing a complex selection, save it as described in the next section.) If you’re not happy with what you’ve done, just press Ctrl+Z/@cmd-Z as many times as needed to back up and start over again.</p>
<p>You can move a selection in several different ways:</p>
<p>· <strong>Drag it</strong>. If you simply move a selection by dragging it, you leave a hole in the background where the selection was, because the Move tool <em>truly</em> moves the selection. So unless you have something under it that you want to show through, that’s probably not what you want to do.</p>
<p>· <strong>Copy it and then move the copy</strong>. If you press the Alt/Option key as you drag with the Move tool, you’ll copy the selection so the original stays where it is. But now you have a duplicate to move around and play with, as shown in Figure 5-21, left.</p>
<p>· <strong>Resize it</strong>. You can drag the square handles that the Move tool puts around your selection to resize or distort the selected material, which is great when you need to change the size of your selection. The Move tool lets you do the same things as Free Transform (see page xx).</p>
<p>· <strong>Rotate it</strong>. You can also rotate a selection the same way you can rotate a picture using Free Rotate (page xx): Just grab a corner handle and turn it.</p>
<div style="margin-left:.5in;">
<p>Tip: You can save a trip to the Tools panel and move selections without activating the Move tool. To move a selection without copying it, just place your cursor in the selection, hold down Ctrl/@cmd, and then drag the selection. To move a copy of a selection so you don’t damage the original, do the same thing, but hold down Ctrl+Alt/@cmd-Alt instead; to move <em>multiple</em> copies, simply repeat the process.</p>
</div>
<p>The Move tool is also a great way to manage and move objects that you’ve put on their own layers (Chapter 6). Page xx explains how to use the Move tool to arrange layered objects.</p>
<h2>Saving Selections</h2>
<p>You can tell Elements to remember the outline of a selection so that you can reuse it again later on. This is a wonderful, easy timesaver for particularly intricate selections. It’s also handy if the “Text on Selection” tool (page xx) misbehaves, forcing you to restart Elements to get it working again; just save the selection before you quit Elements and then reload it to pick up where you left off.</p>
<div style="margin-left:.5in;">
<p>Note: Elements’ saved selections are the equivalent of Photoshop’s <em>alpha channels</em>. Keep that in mind if you decide to try tutorials written for the full-featured Photoshop. Incidentally, alpha channels saved in Photoshop show up in Elements as saved selections, and vice versa. You can save a selection, load it again, and then save the file with the selection active to have it appear as an alpha channel in other programs that understand alpha channels, like Microsoft Word or Apple’s Pages.</p>
</div>
<p>To save the current selection, choose Select®Save Selection, name the selection, and then click OK. When you want to use that selection again, simply go to Select®Load Selection, and there it is waiting for you.</p>
<div style="margin-left:.5in;">
<p>Tip: When you save a feathered selection and then change your mind about how much feather you want, use the Refine Edge dialog box to adjust it. You can also save a hard-edged selection, load it, and then go to Select®Feather to add a feather if you need one. That way, you can change the feather amount each time you use the selection, as long as you remember not to save your <em>change</em> to the selection.</p>
</div>
<h3>Editing a Saved Selection</h3>
<p>It’s probably just as easy to start your selection over if you need to tweak a saved selection, but you can make changes if you want. This can save you time if the original selection was really tricky to create.</p>
<p>Say you’ve got a full-length photo of somebody, and you’ve created and saved a selection of the person’s face (and named it, naturally enough, Face). Now, imagine that after applying a filter to that selection, you decide it would look silly to change only the person’s face and not his hands, too. So you want to add the hands to your saved selection.</p>
<p>You have a couple of ways to do this. The simplest is to load the Face selection, activate your selection tool of choice, put the tool in “Add to Selection” mode, select the hands, and then save the selection again with the same name.</p>
<p>But what if you already have the hands selected and you want to add them to the existing, saved Face selection? Here’s what you’d do:</p>
<p>1. Go to Select®Save Selection.</p>
<p>In the Save Selection dialog box, choose Face from the Selection drop-down menu. When you do, all the radio buttons in the dialog box become active.</p>
<p>2. In the Operation section of the dialog box, choose “Add to Selection” and then click OK.</p>
<p>Elements adds your current selection (the hands) to the saved Face selection and saves the whole shebang, so now the saved Face selection includes the hands, too. (Unfortunately, you can’t rename a saved selection. If it bothers you to keep the old name, just load the selection again by going to Select®Load Selection, and then save it as a <em>new</em> selection with a new name.)</p>
<div style="margin-left:.5in;">
<p>5</p>
<p>Making Selections</p>
<p>One of Elements’ most impressive talents is its ability to let you select part of an image and make changes to only that area. Selecting something tells Elements, “<em>This</em> is what I want to work on—don’t touch the rest of my image.”</p>
<p>You can select a whole image or any part of it. Using selections, you can fine-tune images in very sophisticated ways: Change the color of just one rose in a bouquet, for instance, or change your nephew’s festive purple hair back to something his grandparents would appreciate. Graphics pros will tell you that good selections make the difference between shoddy, amateurish work and a slick, professional job.</p>
<p>Elements includes a bunch of different selection tools. You can draw a rectangular or circular selection with the marquee tools; paint to create a selection with the Selection Brush; or just drag in your photo with the Quick Selection tool and let Elements figure out the exact boundaries of your selection. The Transform Selection command lets you resize selections in a snap, and the Refine Edge dialog box is a great help with difficult selections like hair and fur. And Elements 12 brings with it a terrific new tool: the Content-Aware Move tool lets you move an object to a different location in your photo, while analyzing the image to help it create plausible new material to fill in the hole where the object was originally. It’s explained on page xx</p>
<div style="margin-left:.5in;">
<p>Note: If you’ve used previous versions of Elements and you’re looking for the Magic Extractor, unfortunately it’s gone from Elements 12. You’ll find some workarounds on page xx.</p>
</div>
<p>For most selection jobs, there’s no right or wrong tool. With experience, you may find that you prefer working with certain tools more than others, and you’ll often use more than one tool to create a perfect selection. Once you’ve read this chapter, you’ll understand all of Elements’ different selection tools and how to use each one.</p>
<div style="margin-left:.5in;">
<p>Tip: It’s much easier to select an object that’s been photographed against a plain, contrasting background. So if you know you’re going to want to select a bicycle, for example, shoot it in front of a blank wall rather than, say, a hedge.</p>
</div>
<h1>Selecting Everything</h1>
<p>Sometimes you want to select a whole photo, like when you need to copy and paste it. Elements gives you some useful commands that help you easily make basic selections:</p>
<p><strong>Select All</strong> (Select®All or Ctrl+A/@cmd-A) tells Elements to select your whole image. You’ll see “marching ants” (Figure 5-1) around the outer edge of the picture. If you want to copy your image into another picture or program, Select All is the fastest way to go. (If the photo contains layers—which you’ll learn about in Chapter 6—you may not be able to get everything you want with the Select All command. In that case, use Edit®Copy Merged, or press Shift+Ctrl+C/Shift-@cmd-C instead.)</p>
<div>
<p><<0501.pdf>>figs/print/pe11_0501.pdf</p>
</div>
<p>Figure 5-1. The popular name for these dotted lines is “marching ants” because they march around your selections to show you where the edges lie.</p>
<p>When you see the ants, your selection is <em>active</em>, meaning that whatever you do next will apply only to the selected area.</p>
<p>· <strong>Deselect Everything</strong> (Select®Deselect, Esc, or Ctrl+D/@cmd-D) removes any current selection. Remember this keystroke combination, because it’s one you’ll probably use a lot.</p>
<p>· <strong>Reselect</strong> (Select®Reselect or Shift+Ctrl+D/Shift-@cmd-D) tells Elements to reactivate the selection you just canceled. Use Reselect if you realize you still need a selection you just got rid of (Ctrl+Z/@cmd-Z works, too).</p>
<p>· <strong>Hide/View a Selection</strong> (Ctrl+H/@cmd-H) keeps your selection active while hiding its outline. This is handy because sometimes the marching ants are distracting or make it hard to see what you’re doing. To bring the ants back, press Ctrl+H/@cmd-H a second time.</p>
<div style="margin-left:.5in;">
<p>Tip: If a tool acts goofy or won’t do anything, start your troubleshooting by pressing Ctrl+H/@cmd-H to make sure you don’t have a hidden selection you forgot about.</p>
</div>
<h1>Selecting Rectangular and Elliptical Areas</h1>
<p>Selecting a whole photo is all well and good, but many times your reason for making a selection is precisely because you <em>don’t</em> want to make changes to the whole image. How do you select just part of a picture?</p>
<p>The easiest way is to use the marquee tools. You already met the Rectangular Marquee tool back in Chapter 3 in the section on cropping (page xx). If you want to select a block, circle, or oval in your image, the marquee tools are the way to go. As the winners of the Most Frequently Used Selection Tools Award, they get top spot in the Select section of the Editor’s Tools panel in Expert mode. You can modify how they work, like telling them to create a square instead of a rectangle, as explained in Figure 5-2. Here’s how to use them:</p>
<p>1. Press M or click the marquee tools’ icon in the Tools panel.</p>
<p>The Rectangular Marquee tool is the dotted rectangle at the upper right of Select section of the Tools panel. (If you used the Elliptical Marquee tool last, you see a dotted oval instead.)</p>
<p>2. Choose the shape you want to draw: a rectangle or an ellipse.</p>
<p>At the left end of the Tool Options area, click the rectangle or the ellipse to set the shape, or just tap the M key again to switch between the two shapes.</p>
<p>3. In the Tool Options area, adjust the Feather slider if you want Elements to soften the object’s outline.</p>
<p><em>Feathering</em> makes the edges of a selection softer or fuzzier for better blending (when you’re trying, say, to replace Brad Pitt’s face with yours). The box on page xx explains how feathering works.</p>
<p>4. Drag within your image to make a selection.</p>
<p>Wherever you initially click becomes one of the corners of your rectangular selection or a point just beyond the outer edge of your ellipse (you can also draw perfectly circular or square selections, as Figure 5-2 explains). The selection’s outline expands as you drag.</p>
<div>
<p><<0502.pdf>>figs/print/pe11_0502.pdf</p>
</div>
<p>Figure 5-2. To make a perfectly circular or square selection—rather than an elliptical or rectangular one, respectively—hold down the Shift key while you drag.</p>
<p>You can reposition your selection after it’s drawn by dragging it or tapping the arrow keys on your keyboard. You can also adjust it with Elements’ Transform Selection command, which is explained on page xx.</p>
<p>If you make a mistake, just press Esc. You can also press either Ctrl+D/@cmd-D to get rid of <em>all</em> current selections, or Ctrl+Z/@cmd-Z to remove the most recent one.</p>
<p>The items in the Tool Options area’s Aspect drop-down menu give you three ways to control the size of your selection: Normal lets you manually control it; Fixed Ratio lets you enter proportions in the W (width) and H (height) boxes that appear; and Fixed Size lets you enter specific dimensions in the W and H boxes. The Anti-aliasing checkbox is explained in the box on page xx.</p>
<p>Once you’ve made a selection, you can move it around in the photo by dragging it or using the arrow keys to nudge it. And the Transform Selection command lets you drag a selection larger or smaller, or change its shape; page xx tells you how.</p>
<div style="margin-left:.25in;">
<p>UP TO SPEED</p>
<p>Paste vs. Paste Into Selection</p>
<p>Newcomers to Elements are often confused by the fact that the program has two Paste commands, Paste and Paste Into Selection. Knowing what each one does will help you avoid problems:</p>
</div>
<div>
<p>· Ninety-nine percent of the time, <strong>Paste</strong> is the one you want. This command simply places your copied object wherever you paste it. Once you’ve pasted the object, you can move it by moving the selected area.</p>
<p>· <strong>Paste Into Selection</strong> is a special command for pasting a selection into <em>another</em> selection. Your pasted object appears only <em>within</em> the bounds of the selection you paste it into. When you use this command, you can still move what you paste, but it won’t be visible anywhere outside the edges of the selection you pasted it into.</p>
</div>
<div style="margin-left:.25in;">
<p>For example, say you want to put a beautiful mountain view outside a window: First, select and copy the mountain (Ctrl+C/@cmd-C). Next, select the window, and then choose Edit®Paste Into Selection to add the view. After that, you can maneuver the mountain photo around till it’s properly centered. But if you move it outside the boundary of your window selection, it just disappears. And, once you deselect, your material is permanently in place; you can’t move it again.</p>
<p>If you understand layers (see Chapter 6), here’s another way to think about the difference: Paste creates a new layer, while Paste Into Selection puts what you paste on the existing layer.</p>
<p>Production: The second to last paragraph of the “Paste vs. Paste Into Selection” sidebar should be indented (it’s part of the bulleted list).</p>
</div>
<h1>Selecting Irregularly Sized Areas</h1>
<p>It would be nice if you could get away with making only simple rectangular and elliptical selections, but life is never that neat. If you want to change the color of one fish in your aquarium picture, for example, selecting a rectangle or an oval just isn’t going to cut it.</p>
<p>Thankfully, Elements gives you other tools that make it easy to create very precise selections—no matter their size or shape. In this section, you’ll learn how to use the rest of the selection tools. But first you need to understand the basic controls that they (almost) all share.</p>
<h2>Controlling the Selection Tools</h2>
<p>If you never make mistakes or change your mind, you can skip this section. If, on the other hand, you’re human, you need to know about the mysterious little squares you see in the Tool Options area when one of the selection tool is active (see Figure 5-3).</p>
<div>
<p><<0503.pdf>>figs/print/pe11_0503.pdf</p>
</div>
<p>Figure 5-3. These cryptic squares can save you <em>hours</em> once you understand how to use them to control the selection tools.</p>
<p>These squares don’t look like much, but they tell the selection tools how to do their jobs: whether to start a new selection with each click, to add to what you’ve already selected, or to remove things from the current selection. They’re available for all the selection tools except the Selection Brush and the Quick Selection tool, which have their own sets of options. From left to right, here’s what they do:</p>
<p>· <strong>New</strong> is the standard selection mode that you’ll probably use most of the time. When you click this button and start a new selection, your previous selection disappears.</p>
<p>· <strong>Add</strong> tells Elements to add what you select to whatever you’ve <em>already</em> selected. Unless you have an incredibly steady mouse hand, this option is a godsend because it’s not easy to get a perfect selection on the first try. (Holding down the Shift key while you use any selection tool temporarily switches you to this mode.)</p>
<p>· <strong>Subtract</strong> removes what you select next from any existing selection. (Holding down Alt/Option while selecting the area you want to remove does the same thing.)</p>
<p>· <strong>Intersect</strong> is a bit confusing. This mode lets you take a selected area, make a new selection, and wind up with only the area where the selections overlap, as shown in Figure 5-4. (The keyboard equivalent is Shift+Alt/Shift-Option.) Most people don’t need this one much, but it can be useful for things like creating special shapes. If you need a selection shaped like a quarter of a pie, for instance, create a circular selection, and then switch to “Intersect with Selection” and drag a rectangular selection from the circle’s center point. You’ll wind up with just the arc-shaped area where they intersect.</p>
<div>
<p><<0504.pdf>>figs/print/pe11_0504.pdf</p>
</div>
<p>Figure 5-4. Intersect mode lets you take two separate selections and select only the area where they intersect. If you have an existing selection, then when you select again, your new selection includes only the overlapping area.</p>
<p>Here, the top blue square was the first selection, and the bottom fuchsia square was the second. The bright green area is the final selection.</p>
<h1>Selecting with a Brush</h1>
<p>Elements gives you two very special brushes for making selections. The Selection Brush has been around since Elements 2, so if you’ve used the program before, you probably know how handy it is. But these days it often takes a backseat to the amazing Quick Selection tool, which makes even the trickiest selections as easy as doodling. The Quick Selection tool automatically finds the bounds of the objects you drag it over, while the Selection Brush selects only the area directly under your cursor. Using the Quick Selection tool in combination with the Refine Edge dialog box makes it incredibly simple to create the kinds of selections that would have driven you half crazy trying to get them right in old versions of Elements.</p>
<p>These two brushes are grouped together in the Tools panel, and they’re available in both Expert mode and Quick Fix because they’re so useful. You may well find that with these two brushes, you rarely need the other selection tools.</p>
<p>It couldn’t be easier to use the Quick Selection tool:</p>
<p>1. Activate the Quick Selection tool.</p>
<p>It shares a slot in the Tools panel’s Select section with the Selection Brush and the Magic Wand, just below the marquee tools. Click this slot in the Tools panel, and then—if the Selection Brush or Magic Wand is active instead—click the Quick Selection tool’s icon in the Tool Options area or tap the A key until you see its icon. Look carefully at the Tool Options—the Quick Selection tool looks like a wand with a dotted line around the tip and it points up; the regular Selection Brush looks like an artist’s brush and points down; and the Magic Wand icon has a yellow starburst tip.</p>
<p>2. Drag within your photo.</p>
<p>As you move the cursor, Elements calculates where it thinks the selection’s edges should be, and the selection outline (the marching ants) jumps out to surround that area. It’s an amazingly good guesser. You don’t even need to cover the entire area or go around the edges of the object—Elements does that for you.</p>
<p>This tool has a few Tool Options settings, which are explained below, but you mostly won’t need to think about them, at least not till you’ve finished making your selection. Then you’ll probably want to try using the Refine Edge dialog box (explained in the next section).</p>
<p>3. Adjust the selection.</p>
<p>Odds are that you won’t get a totally perfect selection that includes everything you wanted on the first try. To increase the selection area, drag in the direction where you want to add to the selection. A small move usually does it, and the selection jumps outward to include the area that Elements thinks you want, as shown in Figure 5-5.</p>
<div>
<p><<0505.pdf>>figs/print/pe11_0505.pdf</p>
</div>
<p>Figure 5-5. Left: It would be tough to select this water lily by hand because of the pointy-edged petals. The first drag with the Quick Selection tool produced this partial selection. Notice how well the tool found the petals’ edges.</p>
<p>Right: Another drag across the lily made Elements select the <em>whole</em> blossom. Creating this selection took less than 5 seconds. (Notice that Elements missed a little bit on the edges in a couple of spots. Reduce the brush size and drag again to add those, or switch to the regular Selection Brush to finish up.)</p>
<p>To remove an area from the selection, hold Alt/Option while dragging or clicking the area you don’t want.</p>
<p>Once you’re happy with your selection, that’s it—unless you want to tweak the edges using Refine Edge (see the next section), and you probably do.</p>
<p>The Quick Selection tool has a few Tool Options settings, but you really don’t need most of them:</p>
<p>· <strong>New, Add, Subtract</strong>. These three icons let you choose a selection mode, as described in the previous section (page xx), but you don’t need to use them. The Quick Selection tool automatically adds to your selection if you drag over an unselected area. Shift-drag to select multiple areas that aren’t contiguous, or Alt-drag/Option-drag to remove areas from your selection.</p>
<p>· <strong>Brush Settings</strong>. You can make all kinds of adjustments to your brush by clicking this drop-down menu, although you’ll rarely need to tweak any of these except maybe the brush size once in a while. The additional brush settings you find here are explained on page xx.</p>
<p>· <strong>Refine Edge</strong>. This option lets you tweak the selection’s edges so you get more realistic results when changing the selected area or copying and pasting it. (This button is grayed out until you actually make a selection.) It’s also wonderful for improving selections of things like hair or animal fur. It’s explained in detail in the next section.</p>
<p>· <strong>Sample All Layers</strong>. Turn this checkbox on, and the Quick Selection tool selects from all visible layers in your image, rather than just the active layer. (Chapter 6 explains all about layers.)</p>
<p>· <strong>Auto-Enhance</strong>. This setting tells Elements to automatically smooth out the selection’s edges. It’s a more automated way to make some of the same types of edge adjustments you can make manually with Refine Edge.</p>
<div style="margin-left:.5in;">
<p>Tip: Depending on what you plan to do with your selection, you may want to check out the Smart Brush tool. It works just like the Quick Selection tool, but it goes further than simply completing your selection for you; it <em>also</em> automatically applies the color correction or special effect you choose. See page xx for more about the Smart Brushes.</p>
</div>
<p>The Quick Selection tool doesn’t work for every selection, but it’s a wonderful tool that’s worth trying first for any irregular selection. You can use the Selection Brush or one of the other selection tools to clean up afterward, if needed, but be sure to give Refine Edge a chance to see what it can do for the edges of your selection.</p>
<h2>Refining Selection Edges</h2>
<p>The Refine Edge dialog box is another tremendously helpful Elements feature. In the days before Refine Edge, people used to spend a lot of money on fancy plug-ins that helped them create difficult selections and extractions, but now it’s amazingly simple to do even the toughest selection job right in the Refine Edge dialog box. (If you’re used to Elements 10 or earlier, you’ll find the upgraded Refine Edge does quite a lot more than it did in your old version.)</p>
<p>If you’ve ever tried selecting a girl with flyaway hair or a Golden Retriever, you know how hard it can be to get a selection that includes the edges of the hair or fur so that it doesn’t look obviously cut out. Enter the Refine Edge dialog box, which makes the most difficult selections as easy as pie, as Figure 5-6 shows.</p>
<div>
<p><<0506.pdf>>figs/print/pe11_0506.pdf</p>
</div>
<p>Figure 5-6. Left: If you want to remove this puppy from its distracting background, Refine Edge is just the ticket. Extracting the dog to use in another image would have been impossibly tough in earlier versions of Elements, but the Refine Edge dialog box makes it a snap to select soft, furry edges.</p>
<p>Right: Here’s the extracted dog against a plain background so you can see what a good job Refine Edge did.</p>
<p>You can call up the Refine Edge dialog box by clicking the Refine Edge button that appears in the Tool Options area when you activate most of the selection tools. Or you can summon it by going to Select®Refine Edge whenever you have an active selection. Either way, here’s how to use the dialog box once it’s open:</p>
<p>1. Choose how you want to view your selection.</p>
<p>Drag the Refine Edge dialog box out of the way if Elements plops it right on top of your image. Once you can see your image, you can use the dialog box’s controls to decide how to view the selection. (Your many view options are explained after this list.) Most of the time you can leave the options in the View Mode section the way Adobe set them. This section also includes a two-item toolbox to its left that contains your old friends the Hand and Zoom tools, so you can get a very precise look at how you’re changing your selection.</p>
<div style="margin-left:.5in;">
<p>Tip: If you inadvertently selected some areas that you don’t want, you’ve got a couple of options. If the unwanted area is touching the stuff you do want (for instance, the selection includes a big chunk of the floor as well as your subject), it’s best to click Cancel in the Refine Edge dialog box, edit your selection, and then open the dialog box again. But if the unwanted areas <em>aren’t</em> touching the stuff you want to keep, you can usually go back once you’re done with Refine Edge and use the Eraser tool (if you choose to output a selection—see step 3) or edit the layer mask (if you choose to output a masked layer) to get rid of the unwanted areas. Bottom line: Your selection doesn’t need to be absolutely perfect before you use the Refine Edge dialog box, but it’s going to be harder to edit the selection’s edges once you’re done with Refine Edge.</p>
</div>
<p>2. Use the options in the dialog box’s Edge Detection and Adjust Edge sections to refine your selection’s edges.</p>
<p>These tools and sliders, which are explained after this listed, let you tweak and polish the selection’s edges. Sometimes it may take Refine Edge a few seconds to catch up to you when you change one of these settings, so go slowly and watch to see just how you’re changing the edges. It usually doesn’t take much to get all the soft edges. If you go too far, you may see more of the background color bleeding through, or Elements may even decide to omit some flyaway hairs or other fine details.</p>
<div style="margin-left:.5in;">
<p>Tip: If you just want to adjust the edges of an easy-to-select object like a kayak or a toaster, you can skip right down to the dialog box’s Adjust Edge section, tweak those sliders, and then click OK. But for tricky selections, you’ll need the help of the Edge Detection settings, too.</p>
</div>
<p>3. In the Output section, use the Output To drop-down menu to choose what kind of selection you want and where you want it to appear (in the current document or a new one) once you’re done with Refine Edge.</p>