Skip to main content

Photoshop screen modes


Screen Mode controls how much of Photoshop's interface is displayed on your screen. There are three Screen Modes.
1.     Standard screen mode
2.     Full screen mode with menu bar
3.     Full screen mode

The Standard Screen Mode displays the entire interface. The screen mode appears on screen when we start Photoshop is called Standard screen mode. It's the mode Photoshop uses by default, and the one that takes up the most room.
The Full Screen Mode with Menu Bar option that hides some, but not all, of the interface elements. This screen mode use when user working with big pictures or panorama.
Full Screen Mode in Photoshop which completely hides the interface, giving your image full access to the entire screen. This screen mode is useful for to view our picture on screen.
There are two places to find the Screen Modes in Photoshop.
Menu Bar:
Go up to the View menu in the Menu Bar and choose Screen Mode. From here, we are able to switch between Standard Screen ModeFull Screen Mode with Menu Bar, and Full Screen Mode.

Tool bar:
The Screen Mode icon is the last icon at the very bottom. Click and hold on the icon to view a fly-out menu, and then choose a Screen Mode from the list. The little square next to the Standard Screen Mode means it's currently active. Again, leave the Standard mode selected for now:





Comments

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        ...