Skip to main content

Zooming Panning

ZOOMING &PANNING:

Panning and Zooming are the fundamental tools of Photoshop which assist with making very detail Adjustment and edits image.

Zooming & Panning are mainly useful for retouching image in Photoshop.

Our image quickly and easily zoom in and zoo m out, and panning one area to another.



Using the zoom tool :

1.Select the Zoom tool (magnifying glasses) from the left tool bar and click on the image zoom at desired level.

2. To zoom out the option bar click on (­-)minus symbol than click on image 

Shortcut:  + for zoom in 
                 -  for zoom out 

Using scrubby tool:

1.Open image in Photoshop.
2.Click and hold the mouse.
3.Move left to zoom out, move right to zoom in.

Panning:

The problem with zoom in is not able to see entire image on the single screen.
By using panning tool we able to drag the image around inside the window. 
By doing this panning technique we will able to view hidden areas also


.
Using Hand Tool :

By using hand tool we will pan the image.
Go to tool  bar and select the hand tool.

Shortcut:- ‘h’.

Click and drag to move the image Release the mouse button its desired location .

Flick panning:

1. Click down any area on image .
2. Release swiftly  in any direction , the image will fly over that spot called as flicking .
3. To stop flick just click on flicking image.


 

               

x

Comments

  1. This company will always be there to withdraw your web money, perfect money and bitcoin fund through bitcoin atm card . This company not only facilitates you with its services but also understands the stress that you go through while exchanging your e-money.

    ReplyDelete
  2. Though the technical glitch scared a lot of people. It was just a publicity stunt to make the event even more interesting. The intention was good the question is. Is it necessary to make a fuss just before the big event? I don't think so.jogos online 2019
    friv jogos 4 school online
    jogos friv gratis 2019
    abcya club unblocked

    ReplyDelete

Post a Comment

Popular posts from this blog

Characteristics of computers

    Characteristics:        All computers have similar characteristics, which tells how computers are efficient to perform task. Computers have some Limitations also. Speed:     Computer can work very fast. It takes only few seconds for calculations on very large amount of data. Computer can perform millions (1,000,000) of instructions per second.      We measure the speed of computer in terms of microsecond (10-6 part of a second) or nanosecond (10 to the power -9 part of a second).   Accuracy:        The degree of accuracy of computer is very high and every calculation is performed with the same accuracy.  The errors in computer are due to human and inaccurate data.       The calculation done by computer are 100% error free, If we provide accurate input. Diligence:        A computer is free from tiredness, lack of concentration...

Block diagram of computer

    The basic architecture of computer explained in Blocks is called Block Diagram of computer. This basic architecture of computer finally given by John V on Neumann. Thus it is also called  V on Neumann  architecture. It  is a theoretical design for computer that serves as the basis for almost all modern computers. Input Unit:      We need to input (fed) the data and instructions into the computers to process any task. The input unit consists of one or more input devices.      Keyboard is the one of the most commonly used input device. Other commonly used input devices are the mouse. Output Unit:     The output unit of a computer provides the information and results of a computation to outside world.        Printers, Visual Display Unit (VDU) are the commonly used output devices.   Storage Unit:      The storage unit of the computer holds data and in...

DS LAB FOR II YEAR

1.SINGLE LINKED LIST Procedure for creation of single linked list: STEP-1 : Declaring a variable named as “item”.Ie the element what we place in the linkedlist of the new node.         STEP-2 : Read the value   in “item”. Set first=last=null and next=null. STEP-3: Create a new node named as temp and assign the variable item to data part andassign Address of the node temp to null.       temp.data=item;       temp.next=null; STEP-4: Check   the address part of the first node Check if first=null Then assign first=last=temp Other wise Then assign the new node tolast.next=temp          last=temp STEP-6 : Repeat STEP-3 until you read required nodes. Procedure for display the linked list: STEP-1 : Check whether the list having nodes or not i.e Check if first=null        ...