Skip to main content

Top 10 Most Famous Photographers of All Time

*Top 10 Most Famous Photographers of All Time*


If you want to take truly memorable and moving photographs, you can learn something by studying the pictures of famous photographers. Some of the most beloved artists are deceased, but some are still delighting us with their photographs. The list below includes some of the more famous photographers that still impact our lives today.


1. *Ansel Adams* is probably the most easily recognized name of any photographer. His landscapes are stunning; he achieved an unparalleled level of contrast using creative darkroom work. You can improve your own photos by reading Adams’ own thoughts as he grew older, when he wished that he had kept himself strong enough physically to continue his work.


2. *Yousuf Karsh* has taken photographs that tell a story, and that are more easily understood than many others. Each of his portraits tells you all about the subject. He felt as though there was a secret hidden behind each woman and man. Whether he captures a gleaming eye or a gesture done totally unconsciously, these are times when humans temporarily lose their masks. Karsh’s portraits communicate with people.


3. *Robert Capa* has taken many famous war-time photographs. He has covered five wars, even though the name “Robert Capa” was only the name placed to the photos that Endre Friedman took and that were marketed under the “Robert Capa” name. Friedman felt that if you were not close enough to the subject, then you wouldn’t get a good photograph. He was often in the trenches with soldiers when he took photographs, while most other war photographers took photos from a safe distance.


4. *Henri Cartier-Bresson* has a style that makes him a natural on any top ten photographer list. His style has undoubtedly influenced photography as much as anyone else’s. He was among the first to use 35mm film, and he usually shot in black and white. We are not graced by more of his work, since he gave up the craft about 30 years before he passed away. It’s sad that there are fewer photographs by Cartier-Bresson to enjoy.


5. *Dorothea Lange* took photographs during the Great Depression. She took the famous photo of a migrant mother, which is said to be one of the best-known photographs in history. In the 1940s, she also photographed the Japanese internment camps, and these photographs show sad moments in American history.


6. *Jerry Uelsman* created unique images with composite photographs. Being very talented in the darkroom, he used this skill in his composites. He never used digital cameras, since he felt that his creative process was more suited to the darkroom.


7. *Annie Leibovitz* does fine photographic portraits and is most well known for her work with Vanity Fair and Rolling Stone magazine. Her photographs are intimate, and describe the subject. She’s unafraid of falling in love with the people she photographed.


8. *Brassaï* is the pseudonym for Gyula Halasz, and he was well known for his photographs of ordinary people. He was proof that you don’t have to travel far to find interesting subjects. He used ordinary people for his subjects, and his photos are still captivating.


9. *Brian Duffy* was a British photographer who shot fashion in the 1960s and 70s. He lost his photographic interest at one time and burned many negatives, but then he began taking photos again a year before he died.


10. *Jay Maisel* is a famous modern photographer. His photos are simple; he doesn’t use complex lighting or fancy cameras. He often only takes one lens on photo outings, and he enjoys taking photos of shapes and lights that he finds interesting.


Of course there are other famous photographers that may be a part of your top 10 list. There is much to be learned in the art and craft of photography and from those who inspire us most.


_About the Author:_

Morris Pawtucket (FamousPhotographers125) writes about the famous photographers throughout history who have changed the way we see.

Comments

Popular posts from this blog

Computer Short Questions

Computer Short Questions & Answers: 1. What is any part of the computer that you can physically touch? – Hardware 2. Which generation of computers is still under development? – Fifth 3. What is the most common storage device for the personal computer? – Hard Disk Drive 4. Which key is used in combination with another key to perform a specific task? – Control 5. What is the pattern of printed lines on most products? – Barcodes 6. To make the number pad act as a directional arrow, we press which key? – Shift 7. Which devices let the computer communicate with you? – Input 8. What is the most frequently used piece of hardware for inputting data? – Hardware 9. What is the place where the computer stores programs and data? – Storage unit 10. What is the process of dividing the disk into tracks and sectors? – Formatting 11. What is the space in your computer that loads’ and works with data? – RAM memory 12. What is the storage which stores or retains data after power off? – Non-volatile s...

DBMS Keys

DBMS Keys KEYS in DBMS is an attribute or set of attributes which helps you to identify a row (tuple) uniquely in a relation(table). They allow you to find the relation between two tables. Keys help you uniquely identify a row in a table by a combination of one or more columns in that table. Key is also helpful for finding unique record or row from the table. Database key is also helpful for finding unique record or row from the table. Example: Employee ID FirstName LastName 11 Andrew Johnson 22 Tom Wood 33 Alex Hale In the above-given example, employee ID is a primary key because it uniquely identifies an employee record. In this table, no other employee can have the same employee ID. Here are some reasons for using sql key in the DBMS system. Keys help you to identify any row of data in a table. In a real-world application, a table could contain thousands of records. Moreover, the records could be duplicated. Keys in RDBMS ensure that you can uniquely identify a table record despite ...

four methods overload these methods

Write a program in java which has the following classes and methods:  Class : OverloadDemo Methods : test() Declare four methods with the same name “test()” and overload these methods class OverloadDemo{  public void test(){  System.out.println("It's a test method for null.");  }  public void test(int n){  System.out.println("It's a test method for displaying the int value "+n);  }  public void test(double d){  System.out.println("It's a test method for displaying the double value "+d);  }  public void test(String s){  System.out.println("It's a test method for displaying the String "+s);  }  }  class overClass{  public static void main(String[] args) {  OverloadDemo old = new OverloadDemo();  old.test();  old.test(12);  old.test(25.35);  old.test("Subham");  }  } OUTPUT: It's a test method for null. It's a test method for displaying the int value 12 It's a test method for ...