Skip to main content

Photo Composition

Rules are made to be broken but are also made for a reason. Our ‘go to’ is the widely known ‘rule of thirds’ and is considered in the majority of our intentional compositions. But what other compositions do we use?

1 - Golden Spiral :
Based on the Fibonacci numbers, this composition uses arcs infinitely resembling a spiral shape, which can be used to create balanced and aesthetically pleasing photos.


2 - Cross :
A simple but harmonious composition using two lines, creating a midsection crosshair with the subject in the center of the frame.


3 - Tunnel :
Similar to ‘leading lines’ tunnel composition is used to draw your eye to a subject using depth.


4 - L Shape :
The L-shape composition appears when the elements create the “L” shape which can be (and often is) multiplied. The static horizontal and vertical lines this kind of composition presents create the feeling of rest, stillness, and harmony.


5 - S Curve :
The curved lines in an S-curve composition add a sense of movement to an otherwise static image. Sometimes, they can even add visual depth and perspective to the shot.


6 - V Shape :
Not only can a V lead the eye quickly to the focal point, but it can also lock the viewer’s focus on the subject.


7 - Circular :
A circle offers a different path to composition, a path where curves in the scene work well, but straight lines can tend to be at odds with the border. The circle represents a framing element that is far closer to how we actually see the world.


8 - Pyramid :
With the stable triangle composition, there is a symmetric arrangement of elements. Our example shown above is quite ‘literal’ but this composition can work using multiple elements within a frame making a ‘pyramid’ shape to keep the attention at the image axis.


9 - Rule of Thirds :
A grid is used to divide a photo into nine equal parts, offering four crosshairs for placing important subjects. This guide helps balance your main subject with negative space.


10 - Balanced :
If you think of each element in your frame as having actual weight, a balanced composition offers two focus points of the same ‘weight’ i.e. size, sharpness, and color. An evenly balanced composition creates a feeling of calmness and peacefulness.


11 - Unbalanced :
This composition often relies on depth and asymmetry and can create emphasis in a photo by prioritizing one focus point over another.


12 - Diagonal :
We often use diagonal lines to lead the eyes of the viewer through the scene, towards the subject. Therefore diagonal lines can create a sense of dynamism and action.


13 - Double Diagonal :
You can use more than one diagonal line in your frame, especially when they work together to create harmonious leading lines to highlight your subject.


14 - Golden Triangle :
This rule is somewhat like the rule of thirds, but instead of straight lines, a series of diagonal lines form right-angle triangles. The main subject(s) should sit at the intersection of these triangles.


15 - Radiating :
Elements within your composition radiate outwards or inwards from a central point, adding depth and visual movement to the photo. This composition can create a sense of unity and fluid motion.

A good photographic composition is the foundation of an image and relies on the placement of the subject within its frame. Implementing these rules, and intentionally considering them can seriously up your photography!





Post Collected From Facebook - #fireandice
#weddingphotography #weddingphotographer #weddingphoto #photocomposition #goldenratio #goldenspiral #ruleofthirds #photography #photographytips #SharmaGuides

Comments

Popular posts from this blog

All About Microservices Architecture

All About Microservices Architecture **Microservices Architecture** is an approach to software development where a large application is broken down into smaller, independent services that can operate and be deployed independently. Instead of building a monolithic application, which is a single, tightly-integrated unit, microservices architecture divides the functionality into separate services that communicate with each other through well-defined APIs (Application Programming Interfaces). Key characteristics of microservices architecture include: 1. **Modularity:** Each microservice represents a specific business capability and can be developed, deployed, and scaled independently. 2. **Independence:** Microservices are autonomous, meaning they can be developed, deployed, and updated without affecting the entire system. This independence allows for faster development cycles. 3. **Scalability:** Since each service is independent, you can scale only the specific microservices that require...

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

JS Code for Generating OTP

JS Code for Generating OTP -  * Learn how to create a simple JavaScript function to generate a random 4-digit OTP. (GENERATED BY - ChatGPT) function OTP() { let otp = ""; otp = Math.floor(Math.random() * 9000 + 1000); return otp; } console.log("Your OTP is-", OTP());