Skip to main content

Photographs That Changed the World

The Atomic Bomb

August 9, 1945
The picture was taken from one of the B-29 Superfortresses used in the attack on Nagasaki. The Fat Man mushroom cloud resulting from the nuclear explosion rises 18 km from the point of impact.
Over 50 million people died in the Second World war, but, the atomic bomb left humanity fearing the next world war could be utterly devastating.
From a single bomb, over 150,000 people died at Hiroshima and 80,000 in Nagasaki.
Hindenburg Burning 1937


Zeppelin LZ-129 Hindenburg, shortly after catching fire on May 6, 1937 at Lakehurst Naval Air Station.
The Hindenburg was not the first rigid airship to crash, but the widespread media coverage and spectacular photos, such as this, led to the end of hydrogen airships as a means of transport. The media coverage was heightened by live commentary by Herbert Morrison, describing the events, as broadcasted to WLS radio. "Oh, the humanity!" The crash also became symbolic of twentieth century disasters which were now much more prominent in the public consciousness because of the power of mass media.
The Great Depression

"Destitute pea pickers in California." Mother of seven children. Age thirty-two. Nipomo, California." - Library of Congress
The statistics of the Great Depression were startling – unemployment of over 25%. Falling output of over 33%. But, photos such as this gave a human face to the economic statistics. This photo of Florence Owens Thompson became one of the most iconic photos of the period. It encapsulates the misery, humanity and helplessness of the period, but, at the same time, encompasses a stoic and dignified attitude in the face of adversity. The photograph was taken by Dorothea Lange, who helped to develop the art of documentary photography.
Dead on the Field of Gettysburg

Incidents of the war. A harvest of death, Gettysburg, July, 1863
In the 1870s, photographer was in its infancy. In fact, the civil war was a boom time for photography as families often had photos taken, before their sons went off to war. It was photography that could also bring home to a wider audience the dreadful consequences of war, as this photo illustrates.
Images from Ground Zero 9/11 2001

A New York City fireman calls for 10 more rescue workers to make their way into the rubble of the World Trade Center. The attack sent shock waves across the world and altered the course of US and global foreign policy.
Fall of the Berlin Wall

Since its creation in 1961, the Berlin wall epitomised the "Iron Curtain" which separated East Europe from West Europe. The fall of the Berlin Wall symbolised the end of Communist / Soviet control in Eastern Europe. Germany could once again be re-united.
Images from First World War

First World War. July 1916. Wounded British troops on the Somme.
The First World War was billed as the war to end all wars. The outbreak of war led to a wave of patriotic feeling and enthusiastic support for going to war across Europe. It was only after shocking causality figures that the initial euphoria died away. Photos like this presented a much different image of war, compared to the careful propaganda of the protagonists.
Assassination of J F Kennedy 1963

John F. Kennedy motorcade, Dallas, Texas, Nov. 22, 1963, just a few minutes before the fatal assassination attempt.

Taken by Mary Moorman (Mary Krahmer) 22 November 1963 one-sixth of a second after the fatal head shot to JFK. Four US Presidents have been assassinated whilst in office, but, none shocked the world as much as the assassination of JFK.
The Horrors of the Nazi Concentration Camps

Senator Alben W. Barkley of Kentucky, a member of a congressional committee investigating Nazi atrocities, views the evidence at first hand at Buchenwald concentration camp, Weimar, Germany.
Bombing of Guernica - 1937

Only 34 years after the development of the first aeroplane, the world was shocked as the German Luftwaffe used planes to bomb the civilian town of Guernica during the Spanish civil war. The damage was extensive and foreshadowed the role of 'carpet bombing' of civilian areas which was to be a feature of the Second World War and future wars.
Beatles Arrive in the US

The Beatles symbolised the rapid social and cultural changes that occurred in the 1960s. Here they receive a rapturous reception on their first visit to the US.
Lenin and The Triumph of Communism

Lenin address a crowd during Russian civil war of 1920. The Bolsheviks would emerge as the controlling force in Russia leading to the totalitarianism of Stalinist Russia. This photo was cut in half by Stalinist censors to remove Leon Trotsky from the official history.
March On Washington 1963

The 1963 March on Washington for Jobs and Freedom was one of the high points of the civil rights movements. Though boycotted by the Nation of Islam, the march was best remembered for Martin Luther King's soul stirring speech - "I Have a Dream..."
Moon Landing 1969

20 July 1969 Buzz Aldrin. Photo by Neil Armstrong.
This picture captures the excitement of man's first walk on the moon.
First Flight of Aircraft

For many years, powered flight was seen as an impossible dream. But, on December 17, 1903 at Kitty Hawk, North Carolina, the Wright Brothers succeeded in developing the first heavier than air aircraft flight. Within the next few decades, aircraft travel was to grow exponentially profoundly changing the nature of long distance travel.
Gandhi on Salt March 1930

Gandhi at Dandi, South Gujarat, picking salt on the beach at the end of the Salt March, 5 April 1930.
The salt march was a pivotal moment in the campaign for Indian independence. Led by Mahatma Gandhi, the peaceful protest brought widespread publicity to the campaign for Indian independence both domestically and internationally. The British did not give any direct concessions, and over 80,000 Indians were jailed in subsequent protests; many more were inspired to join the independence movement which culminated in Indian independence in 1947.

Comments

Popular posts from this blog

JAVA Scrollbar, MenuItem and Menu, PopupMenu

ava AWT Scrollbar The  object  of Scrollbar class is used to add horizontal and vertical scrollbar. Scrollbar is a  GUI  component allows us to see invisible number of rows and columns. AWT Scrollbar class declaration public   class  Scrollbar  extends  Component  implements  Adjustable, Accessible   Java AWT Scrollbar Example import  java.awt.*;   class  ScrollbarExample{   ScrollbarExample(){               Frame f=  new  Frame( "Scrollbar Example" );               Scrollbar s= new  Scrollbar();               s.setBounds( 100 , 100 ,  50 , 100 );               f.add(s);               f.setSize( 400 , 400 );               f.setLayout( null );               f.setVisible( true );   }   public   static   void  main(String args[]){           new  ScrollbarExample();   }   }   Output: Java AWT Scrollbar Example with AdjustmentListener import  java.awt.*;   import  java.awt.event.*;   class  ScrollbarExample{        ScrollbarExample(){               Frame f=  new  Frame( "Scro

Difference between net platform and dot net framework...

Difference between net platform and dot net framework... .net platform supports programming languages that are .net compatible. It is the platform using which we can build and develop the applications. .net framework is the engine inside the .net platform which actually compiles and produces the executable code. .net framework contains CLR(Common Language Runtime) and FCL(Framework Class Library) using which it produces the platform independent codes. What is the .NET Framework? The Microsoft .NET Framework is a platform for building, deploying, and running Web Services and applications. It provides a highly productive, standards-based, multi-language environment for integrating existing investments with next-generation applications and services as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class librari

C++ this Pointer, static, struct and Enumeration

C++ this Pointer In C++ programming,  this  is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++. It can be used  to pass current object as a parameter to another method. It can be used  to refer current class instance variable. It can be used  to declare indexers. C++ this Pointer Example Let's see the example of this keyword in C++ that refers to the fields of current class. #include <iostream>    using   namespace  std;   class  Employee {       public :           int  id;  //data member (also instance variable)               string name;  //data member(also instance variable)            float  salary;          Employee( int  id, string name,  float  salary)             {                   this ->id = id;                  this ->name = name;                  this ->salary = salary;            }             void  display()             {                 cout<<id<< "  " <<name<&