<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cairo Photo School</title>
	<atom:link href="http://www.cairophotoschool.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cairophotoschool.com</link>
	<description>Photography tuiton, workshops and tours in Cairo, Egypt</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:00:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Course Calendar</title>
		<link>http://www.cairophotoschool.com/2011/01/course-calendar/</link>
		<comments>http://www.cairophotoschool.com/2011/01/course-calendar/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 15:36:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=618</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
		$jaer = jQuery.noConflict();
		jQuery(document).ready(function($jaer) {
			
				$jaer('#espresso_calendar').fullCalendar({
					
					/** 
					* General Display
					* http://arshaw.com/fullcalendar/docs/text/ 
					**/
					
					//Defines the buttons and title at the top of the calendar.
					header: { //Settings: http://arshaw.com/fullcalendar/docs/display/header/
						left: 'prev, today', center: 'title', right: 'month,agendaWeek,agendaDay,next'					},
					
					/**
					* Theme Settings
					*
					* Once you enable theming with true, you still need to include the CSS file for the theme you want. 
					* For example, if you just downloaded a theme from the jQuery UI Themeroller, you need to put a <link> tag in your page's <head>.
					**/
					
					//Enables/disables use of jQuery UI theming.
					//theme: true, //Settings: http://arshaw.com/fullcalendar/docs/display/theme/
					
					//This option only applies to calendars that have jQuery UI theming enabled with the theme option.
					/*buttonIcons:{ //Settings: http://arshaw.com/fullcalendar/docs/display/buttonIcons/
						prev: 'circle-triangle-w',
						next: 'circle-triangle-e'
					},*/
			
					//The day that each week begins.
					//The value must be a number that represents the day of the week.
					//Sunday=0, Monday=1, Tuesday=2, etc.
					firstDay:0, //Settings: http://arshaw.com/fullcalendar/docs/display/firstDay/
					
					//Displays the calendar in right-to-left mode.
					isRTL: false,
					
					//Whether to include Saturday/Sunday columns in any of the calendar views.
					weekends: true,
					
					//Determines the number of weeks displayed in a month view. Also determines each week's height.
					weekMode:'fixed', //Settings: http://arshaw.com/fullcalendar/docs/display/weekMode/
					
					//Will make the entire calendar (including header) a pixel height.
					height:650, //Settings: http://arshaw.com/fullcalendar/docs/display/height/
					
					//Will make the calendar's content area a pixel height.
					//contentHeight: 600, //Settings: http://arshaw.com/fullcalendar/docs/display/contentHeight/
	
					//Determines the width-to-height aspect ratio of the calendar.
					//aspectRatio: 2, /?Settings: http://arshaw.com/fullcalendar/docs/display/aspectRatio/
					
					/** 
					* Agenda Options
					* http://arshaw.com/fullcalendar/docs/agenda/ 
					* Note: These ptions that apply to the agendaWeek and agendaDay views, and have beft out intentionally. 
					* Please refer to the URL above to add.manage your agenda views.
					**/
	
					/** 
					* Text/Time Customization Settings
					* http://arshaw.com/fullcalendar/docs/text/ 
					**/
					
					//Determines the time-text that will be displayed on each event.
					timeFormat:{ //Settings: http://arshaw.com/fullcalendar/docs/text/timeFormat/
						// for agendaWeek and agendaDay
						agenda: 'h:mm{ - h:mm}', // 5:00 - 6:30
					
						// for all other views
						'': 'h(:mm)t'            // 7p
					},
					
					//Changes the colors of the events as seen here:
					//http://code.google.com/p/fullcalendar/issues/detail?id=6&can=1&q=css&colspec=ID%20Type%20Status%20Milestone%20Summary%20Stars
					eventRender: function(event, element) {
						
						//This displays the title of the event when hovering
						element.attr('title', event.title);
						
						//These are examples of custom parameters that can be passed
						/*if (event.myType == 'meeting') {
							element.addClass('meeting');
							//alert(event.myType );
						}*/
						
						//This example basically applies different classes to the event
						/*switch (event.myType){
						case 'meeting' :
							element.find('.n, .w, .c, .e, .s').css('background-color', '#00cc33');
						break;
						case 'project' :
							element.find('.n, .w, .c, .e, .s').css('background-color', 'red');
						break;
						default :
						break;
						}*/
					},
					
					//Determines the text that will be displayed on the calendar's column headings.
					columnFormat:{ //Settings: http://arshaw.com/fullcalendar/docs/text/columnFormat/
						month: 'ddd', week: 'ddd M/d', day: 'dddd M/d'						/*month: 'ddd',    // Mon
						week: 'ddd M/d', // Mon 9/7
						day: 'dddd M/d'  // Monday 9/7*/
					},
					
					//For date formatting options, please refer to: http://arshaw.com/fullcalendar/docs/utilities/formatDate/
					titleFormat:{ //Settings: http://arshaw.com/fullcalendar/docs/text/columnFormat/
						month: 'MMMM yyyy', week: "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", day: 'dddd, MMM d, yyyy'						/*month: 'MMMM yyyy',                             // September 2009
						week: "MMM d[ yyyy]{ '&#8212;'[ MMM] d yyyy}", // Sep 7 - 13 2009
						day: 'dddd, MMM d, yyyy'                  // Tuesday, Sep 8, 2009*/
					},
					
					//Text that will be displayed on buttons of the header.
					buttonText: { //Settings: http://arshaw.com/fullcalendar/docs/text/buttonText/
						left: 'prev, today', center: 'title', right: 'month,agendaWeek,agendaDay,next'						/*prev:     '&nbsp;&#9668;&nbsp;',  // left triangle
						next:     '&nbsp;&#9658;&nbsp;',  // right triangle
						prevYear: '&nbsp;&lt;&lt;&nbsp;', // <<
						nextYear: '&nbsp;&gt;&gt;&nbsp;', // >>
						today:    'today',
						month:    'month',
						week:     'week',
						day:      'day'*/
					},
					
					//Full names of months.
					monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'/*'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'*/],
					
					//Abbreviated names of months.
					monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'/*'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'*/],
					
					//Full names of days-of-week.
					dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'/*'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'*/],
					
					//Abbreviated names of days-of-week.
					dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'/*'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'*/],
					
					//Load the events into json srrsy
					events: [],
					loading: function(bool) {
						if (bool) $('#loading').show();
						else $jaer('#loading').hide();
					}
					
				});
				
			});
		
	</script>
	
		<div id='espresso_calendar'></div>
	
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2011/01/course-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 New Year Scheduled courses</title>
		<link>http://www.cairophotoschool.com/2010/12/2011-new-year-scheduled-courses/</link>
		<comments>http://www.cairophotoschool.com/2010/12/2011-new-year-scheduled-courses/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 14:22:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adobe Lightroom]]></category>
		<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Scheduled Courses]]></category>
		<category><![CDATA[Advanced Courses]]></category>
		<category><![CDATA[Beginner Course]]></category>
		<category><![CDATA[intermediate Courses]]></category>
		<category><![CDATA[Marco Ryan]]></category>
		<category><![CDATA[Summer School Schedule]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=495</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/2010/12/2011-new-year-scheduled-courses/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a>
In January, February and March 2011 Cairo Photo School will begin a new series of scheduled classes aimed at beginners and Intermediates. <br /><a href="http://www.cairophotoschool.com/2010/12/2011-new-year-scheduled-courses/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><div class='postTabs_divs postTabs_curr_div' id='postTabs_0_495'>
<span class='postTabs_titles'><b>Overview</b></span></p>
<h3>2011 New Year Photography Courses</h3>
<p><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/coffeeman-300x200.jpg" alt="" title="coffeeman" width="300" height="200" class="alignleft size-medium wp-image-220" />In January, February and March 2011 Cairo Photo School will begin a new series of scheduled classes aimed at beginners and Intermediates.</p>
<p>Each course builds upon lessons learned in previous sessions and, together, cover all of the techniques and skills required for you to take control of your camera, allowing you to exercise full creative control, whatever your preferred photographic style and subject matter.</p>
<p>The final Lightroom course completes the process of digital imaging with an introduction to the popular Adobe Lightroom software, with which photographers can manage and process their digital image files. We include in this the use of X-rite color management and are the only organization in Egypt to offer either Lightroom or Color management workflow training</p>
<h3>How does it work?</h3>
<p>Courses may be booked individually or together. There is a discount available if you are booking two or more courses at the same time. Courses are designed to build upon lessons learned in previous workshops, combining to give you a comprehensive guide to the art of photography. We are different from many clubs or associations in that our courses combine practical and theory with the instructor being on hand all the time. Courses are limited to 10 people, with a minimum of 6.</p>
<p></div>

<div class='postTabs_divs' id='postTabs_1_495'>
<span class='postTabs_titles'><b>Dates &#038; Price</b></span></p>
<h3>What are the dates?</h3>
<p>Beginner:<br />
B1: 2 half days: Afternoons of January 25th and January 27th 2011<br />
B2: 1 full day: January 29th 2011</p>
<p>Intermediate:<br />
M1:1 Full day: February 5th 2011<br />
M2: 2 Half Days: Afternoons of February 23rd &#038; 24th 2011</p>
<p>Advanced:<br />
A1: Dates to be confirmed in Feb and March</p>
<p>Lightroom:<br />
L2: 2 x half days: Afternoons of Mar 4th and Mar 5th</p>
<h3>Cost</h3>
<p>How much are courses?</p>
<p>One Course – EGP750 / $136<br />
Two courses – EGP1400 / $ 250<br />
Three courses – EGP 1900 / $345<br />
Lightroom course –  EGP1100 /$200<br />
Three courses + Adobe Lightroom course –  EGP2750 / $500</p>
<h3>How can I book?</h3>
<p>You may register for one or more courses online. When you have completed the registration, you will receive an automated reply detailing payment instructions. </p>
<p>PLEASE NOTE: Your registration is not confirmed until your payment has been received.</p>
<p></div>

<div class='postTabs_divs' id='postTabs_2_495'>
<span class='postTabs_titles'><b>Beginners</b></span></p>
<h3>Beginners Course &#8211; An introduction to photography</h3>
<p><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/BirquashCamelSouk-14-200x300.jpg" alt="" title="BirquashCamelSouk-14" width="200" height="300" class="alignleft size-medium wp-image-224" />The Beginners’ course serves as a great introduction to photography. We look at the basic principles involved in capturing an image and learn how the camera interprets what it sees. The course has a very practical bias and our aim is to translate the technical aspects of photography into real-life examples, demonstrating how you can take creative control of your camera’s functions.</p>
<p>This course is ideal for anyone looking to fully understand the capabilities of their camera and will demystify all those curious buttons and dials. Our aim on the Beginners’ Course is to teach you how to use your camera to capture the image that you see in your mind’s eye.</p>
<p>After a morning in the studio, looking at basic camera control techniques, we break for lunch and then reconvene in the afternoon for a practical field-trip in Cairo’s photogenic Moaz street. We will photograph in the late afternoon and early evening, enjoying the best light of the day and putting the day’s lessons into practice.</p>
<p>By the end of the Beginners’ Course, you will have an understanding and appreciation of the following photographic techniques:</p>
<p>    * Apertures and Shutter Speeds. The relationship between them and how their use influences the final image.<br />
    * ISO. How selecting the right ISO speed will allow you to capture images in low light, without flash.<br />
    * White Balance and Colour Temperature. How to ensure that you are capturing colours accurately.<br />
    * RAW v JPEG. We explain what these digital formats are and how your choice of format might affect what you can do with your digital files.</p>
<h3>What will you need to attend the course?</h3>
<p>Any camera, whether digital or film, will be perfect but an SLR or Rangefinder camera would be ideal. If you’re not sure, please ask.</p>
<h3>What else will you receive?</h3>
<p>    * You will leave the course with a comprehensive set of notes, covering all of the techniques discussed, which you can refer to in your own time.<br />
    * Access to a private, online forum where you can continue discussions with fellow students and upload your images for review and critique.<br />
    * A range of trial software, suitable for anyone looking to manage digital image files.<br />
    * Discount vouchers for future Cairo Photo School courses and workshops held by Marco Ryan.<br />
    * A list of web site and resources for further learning.</p>
<p></div>

<div class='postTabs_divs' id='postTabs_3_495'>
<span class='postTabs_titles'><b>Intermediate</b></span></p>
<h3>Intermediate Course  &#8211; Continuing to improve your skills</h3>
<p><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/06/egypt_nubian_village-0134-300x199.jpg" alt="" title="egypt_nubian_village-0134" width="300" height="199" class="alignleft size-medium wp-image-505" />The Intermediate Course continues to build upon skills learned in the Beginners’ Course, enhancing your understanding of the camera functions and giving you greater creative control.</p>
<p>As well as a number of technical skills, you will also learn the art of successful composition, seeing examples of work from a range of professional photographers and seeing how you might translate their compositional ideas into your own work. This section of the course is where we will begin to encourage your creative ideas to flourish.</p>
<p>After a morning in the studio, learning technical skills we will break for lunch and then reconvene in the late afternoon at Dahab Island  to practice lessons learned during the best light of the day.</p>
<p>By the end of the Intermediate Course, you will have an understanding and appreciation of the following photographic techniques:</p>
<p>    * Camera Metering Modes. You will learn how the camera reads lights and how it interprets what it sees.<br />
    * Exposure Control. Knowing how and when to override the camera’s automatic exposure settings will allow you to capture perfectly exposed photographs.<br />
    * Composition. What makes a “good” photograph? How can you adapt compositional ideas to give your images more impact.<br />
    * Digital Post-Production. We look at the first steps in creating a consistent digital workflow process to help you manage your digital files.</p>
<h3>What will you need to attend the course?</h3>
<p>Any camera, whether digital or film, will be perfect but an SLR or Rangefinder camera would be ideal. If you’re not sure, please ask.</p>
<h3>What else will you receive?</h3>
<p>    * You will leave the course with a comprehensive set of notes, covering all of the techniques discussed, which you can refer to in your own time.<br />
    * Access to a private, online forum where you can continue discussions with fellow students and upload your images for review and critique.<br />
    * A range of trial software, suitable for anyone looking to manage digital image files.<br />
    * Discount vouchers for future Bangkok Photo School courses and workshops held by Gavin Gough.<br />
    * A list of web site and resources for further learning.</p>
<p></div>

<div class='postTabs_divs' id='postTabs_4_495'>
<span class='postTabs_titles'><b> Advanced</b></span></p>
<h3>Advanced Course &#8211; Bringing all your skills together</h3>
<p><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/06/Cairo-pyramidsx800-601-300x199.jpg" alt="" title="Cairo-pyramidsx800-601" width="300" height="199" class="alignleft size-medium wp-image-506" />The Advanced Course brings all of the skills and techniques learned on previous courses together and combines them into a consistent and comprehensive approach to the art of photography.</p>
<p>The course begins with an examination of the work of several successful professional photographers with a discussion of how we can adapt the techniques we have learned to realise our creative vision. We look at the art of photographic story-telling and learn how to plan, construct, shoot and realise a photo essay.</p>
<p>This course also looks at the difficulties of shooting in low-light situations and you will learn techniques to make the most of available light. We also look at fill-flash techniques and understand how different exposure settings can create dramatic effects in low-light.</p>
<p>This sessions concludes with each student undertaking a story-telling exercise on their own. By the end of the workshop, you will have created a series of images and will have the skills and software required to build them into an online photo essay.</p>
<p>After a morning in the library, we break for lunch and then reconvene in the early evening at the colourful Pak Khlong Talaat flower market in Bangkok. This field-trip begins at dusk and continues into the evening where we will photograph after dark, with artificial light and using the skills learned earlier in the day. This is a challenging but enormously rewarding time to photograph and brings the series of courses to an exciting conclusion.</p>
<p>By the end of the Advanced Course, you will have an understanding and appreciation of the following photographic techniques:</p>
<p>    * Composition. More advanced compositional ideas will help you create images with drama and impact.<br />
    * Low Light Photography. This is one of the most challenging times to photograph but there are various techniques that will help you make the very most of low light situations.<br />
    * Story-telling. With Gavin’s help, you will create your own photo essay based upon principles used by news photographers and photojournalists. At the end of the course you will be able to construct your own online slideshow with accompanying audio, which will be supplied for you.</p>
<h3>What will you need to attend the course?</h3>
<p>Any camera, whether digital or film, will be perfect but an SLR or Rangefinder camera would be ideal. If you’re not sure, please ask.</p>
<h3>What else will you receive?</h3>
<p>    * You will leave the course with a comprehensive set of notes, covering all of the techniques discussed, which you can refer to in your own time.<br />
    * Access to a private, online forum where you can continue discussions with fellow students and upload your images for review and critique.<br />
    * A range of trial software, suitable for anyone looking to manage digital image files.<br />
    * Discount vouchers for future Cairo Photo School courses and workshops held by Marco Ryan.<br />
    * A list of web site and resources for further learning.<br />
    * A series of audio files appropriate for adding to your story-telling photo essay.<br />
    * Instructions for how to upload your photo essay to our internet server, where your story can be viewed by the world.</p>
<p></div>

<div class='postTabs_divs' id='postTabs_5_495'>
<span class='postTabs_titles'><b>Lightroom</b></span></p>
<h3>Adobe Lightroom &#8211; Creating a workflow for digital photographers &#8211; with Marco Ryan</h3>
<p><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/06/lr3screen-300x186.png" alt="" title="lr3screen" width="300" height="186" class="alignleft size-medium wp-image-509" />Building on the popularity and success of previous Adobe Lightroom workshops, this full-day workshop will give participants the opportunity to create a comprehensive, start-to-finish digital workflow that will allow you to manage your digital images files.</p>
<p>The course content includes lessons on creating a consistent approach to importing, storing, archiving and managing a digital image library. We learn techniques for cataloguing files for quick and easy access and will discuss how Lightroom’s “Search”, “Metadata” and “Collection” functions can be used to your advantage.</p>
<p>The second half of the day is spent looking at real examples of image processing techniques. We learn how to make the very best of a digital image file, looking at ways in which you can realise the creative vision you had when you took the original photograph. This session covers topics including exposure control, white balance, contrast, colour control, tone management, black and white, brushes, gradients and all of Lightroom’s comprehensive development controls.</p>
<p>The aim of the Adobe Lightroom workshop is to equip you with the skills to manage your image library and to process digital files to create the very best images possible.</p>
<h3>What will you need to attend the course?</h3>
<p>A laptop computer and a copy of the 30-day trial version of Adobe Lightroom software, which can be downloaded for free from the Adobe web site will be useful but not essential.</p>
<h3>What else will you receive?</h3>
<p>    * You will leave the course equipped with comprehensive course notes and a series of instructional videos, made by Gavin Gough of the Bangkok Photo School, which you can view in the comfort of your own home and at your convenience. Previous students have found these videos, which relate to the course content, to be an invaluable learning resource.<br />
    * A series of over 100 Lightroom presets, which build into a step-by-step digital workflow, allowing you to manage and process your digital images files quickly and effectively.<br />
</div>

<div class='postTabs_divs' id='postTabs_6_495'>
<span class='postTabs_titles'><b>Booking Form</b></span><br />

                <div class='gf_browser_unknown gform_wrapper' id='gform_wrapper_8' ><form method='post' enctype='multipart/form-data'  id='gform_8'  action='/feed/'>
                        <div class='gform_heading'>
                            <h3 class='gform_title'>New Year 2011 School Booking Schedule</h3>
                            <span class='gform_description'>Thanks for showing interest in the Cairo Photo School New Year 2011 Schedule

Please enter the information in this form. You will then receive confirmation together with payment instructions</span>
                        </div>
                        <div class='gform_body'>
                            <ul id='gform_fields_8' class='gform_fields top_label description_below'><li id='field_8_1' class='gfield' ><label class='gfield_label' for='input_8_1_3'>Name</label><div class='ginput_complex ginput_container' id='input_8_1'><span id='input_8_1_3_container' class='ginput_left'><input type='text' name='input_1.3' id='input_8_1_3' value='' tabindex='1' /><label for='input_8_1_3'>First</label></span><span id='input_8_1_6_container' class='ginput_right'><input type='text' name='input_1.6' id='input_8_1_6' value='' tabindex='2' /><label for='input_8_1_6'>Last</label></span></div></li><li id='field_8_2' class='gfield' ><label class='gfield_label' for='input_8_2'>Email</label><div class='ginput_container'><input name='input_2' id='input_8_2' type='text' value='' class='medium'  tabindex='3'  /></div></li><li id='field_8_3' class='gfield' ><label class='gfield_label' for='input_8_3'>Phone</label><div class='ginput_container'><input name='input_3' id='input_8_3' type='text' value='' class='medium' tabindex='4' /></div></li><li id='field_8_4' class='gfield               gfield_contains_required' ><label class='gfield_label'>I would like to attend the following course(s)<span class='gfield_required'>*</span></label><div class='ginput_container'><ul class='gfield_radio' id='input_8_4'><li class='gchoice_4_0'><input name='input_4' type='radio' value='Single course - Beginner B1 : Jan 25th &amp; 27th'  id='choice_4_0' tabindex='5'    /><label for='choice_4_0'>Single course - Beginner B1 : Jan 25th & 27th</label></li><li class='gchoice_4_1'><input name='input_4' type='radio' value='Single Course - Beginner B2 : Jan 29th'  id='choice_4_1' tabindex='6'    /><label for='choice_4_1'>Single Course - Beginner B2 : Jan 29th</label></li><li class='gchoice_4_2'><input name='input_4' type='radio' value='Single course - Intermediate M1: Feb 5th'  id='choice_4_2' tabindex='7'    /><label for='choice_4_2'>Single course - Intermediate M1: Feb 5th</label></li><li class='gchoice_4_3'><input name='input_4' type='radio' value='Single course - Intermediate M2 : Feb 23rd &amp; 25th'  id='choice_4_3' tabindex='8'    /><label for='choice_4_3'>Single course - Intermediate M2 : Feb 23rd & 25th</label></li><li class='gchoice_4_4'><input name='input_4' type='radio' value='Single Course - Advanced A1: Feb tbc'  id='choice_4_4' tabindex='9'    /><label for='choice_4_4'>Single Course - Advanced A1: Feb tbc</label></li><li class='gchoice_4_5'><input name='input_4' type='radio' value='Single course - Advanced A2: Mar tbc'  id='choice_4_5' tabindex='10'    /><label for='choice_4_5'>Single course - Advanced A2: Mar tbc</label></li><li class='gchoice_4_6'><input name='input_4' type='radio' value='Single course - Lightroom L1: Mar 4th &amp; 5th'  id='choice_4_6' tabindex='11'    /><label for='choice_4_6'>Single course - Lightroom L1: Mar 4th & 5th</label></li><li class='gchoice_4_7'><input name='input_4' type='radio' value='Two courses - Beginner + Intermediate'  id='choice_4_7' tabindex='12'    /><label for='choice_4_7'>Two courses - Beginner + Intermediate</label></li><li class='gchoice_4_8'><input name='input_4' type='radio' value='Two courses - Intermediate + Advanced'  id='choice_4_8' tabindex='13'    /><label for='choice_4_8'>Two courses - Intermediate + Advanced</label></li><li class='gchoice_4_9'><input name='input_4' type='radio' value='All three courses - Beginner + Intermediate + advanced'  id='choice_4_9' tabindex='14'    /><label for='choice_4_9'>All three courses - Beginner + Intermediate + advanced</label></li><li class='gchoice_4_10'><input name='input_4' type='radio' value='Three Courses + Lightroom'  id='choice_4_10' tabindex='15'    /><label for='choice_4_10'>Three Courses + Lightroom</label></li></ul></div><div class='gfield_description'>Please select the course options you would like. There is a signficant discount for choosing 2 or more courses. Please note that the Lightroom is only available as a single course or if all 3 courses are taken.</div></li>
                            </ul></div>
        <div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_8' class='button gform_button' value='Submit' tabindex='16' />
            <input type='hidden' class='gform_hidden' name='is_submit_8' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_submit' value='8' />
            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='4f2e8d3a628c0' />
            <input type='hidden' class='gform_hidden' name='state_8' value='YToyOntpOjA7czo2OiJhOjA6e30iO2k6MTtzOjMyOiI3MWNlMWY3NDAxZGZmNjQzNjk4Y2Q5NzA5YjdkNGI4MSI7fQ==' />
            <input type='hidden' class='gform_hidden' name='gform_target_page_number_8' id='gform_target_page_number_8' value='0' />
            <input type='hidden' class='gform_hidden' name='gform_source_page_number_8' id='gform_source_page_number_8' value='1' />
            <input type='hidden' name='gform_field_values' value='' />
            
        </div>
                </form>
                </div><br />
</div>

</p>
<script type='text/javascript'>jQuery(document).ready(function() { if(postTabs_getCookie('postTabs_495')) postTabs_show(postTabs_getCookie('postTabs_495'),495); });</script>]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/12/2011-new-year-scheduled-courses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing the Cairo Photo School</title>
		<link>http://www.cairophotoschool.com/2010/04/introducing-the-cairo-photo-school/</link>
		<comments>http://www.cairophotoschool.com/2010/04/introducing-the-cairo-photo-school/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 16:24:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Cairo Photo School]]></category>
		<category><![CDATA[Cairo Photo Studio]]></category>
		<category><![CDATA[Creative Photography Courses]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[Photo Workshops]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=74</guid>
		<description><![CDATA[A new Photography School based in Cairo Egypt, aimed at helping photographers of all standards to explore the potential of their photography in Cairo and throughout Egypt.  It has been set up and is staffed by professional photographers Marco Ryan and Ramy Salem, whose specialties range from commercial studio work and event photography to travel and landscape photography, allowing us to offer a range of different courses, locations and opportunities. In addition WOrld renown photogrphaers will be leading our long * day workshops and tours. Our philosophy is that photography should be fun. We aim to inspire you, to help you and to ensure that you leave your time with us delighted by what you have achieved and excited by the possibilities now open to you.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/Egypt_Landscapesx800.jpg"><img class="alignleft size-medium wp-image-80" title="Egypt_Landscapesx800" src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/Egypt_Landscapesx800-300x199.jpg" alt="Cairo, Egypt" width="300" height="199" /></a>The Cairo Photo School is a new initiative aimed at helping photographers of all standards to explore the potential of their photography in Cairo and throughout Egypt.</p>
<p>It has been set up and is staffed by professional photographers Marco Ryan and <a title="ramysalem" href="http://www.ramysalem.com" target="_blank">Ramy Salem</a>, whose specialties range from commercial studio work and event photography to travel and landscape photography, allowing us to offer a range of different courses, locations and opportunities.</p>
<p>Our philosophy is that photography should be fun. We aim to inspire you, to help you and to ensure that you leave your time with us delighted by what you have achieved and excited by the possibilities now open to you.</p>
<p>Although we have a range of courses from evening workshops, to one-day classroom, studio or workshop courses, our aim is to make this personal. We never have classes more than 4 &#8211; for any of our courses,  as we believe that you deserve as much one on one time as you need.</p>
<p>Our courses fall into 3 broad categories:<br />
7-10 day workshops and photo tours led by world renown photographers. Threshers run by our sister company, Cairo Photo Tours.</p>
<p>1 day or half day intensive workshops for 1-4 people. These are tailored to your needs and have no fixed syllabus and consists of 1 on 1 coaching and mentoring. Cost for these are $350 for the half day or $600 for a full day, which is split between the number of attendees</p>
<p>1 day courses where the syllabus is fixed but the date is up to you. These course can have up to 4 people and are $450 for the full day. There are no half day courses.</p>
<p>Scheduled courses. These are fixed syllabus indices dates are are filled on a first come fist served basis. The cost is per head and there will be 6-10 participants. Course are 10 hours long, consisting of a 4 hour initial session and then 3 x 2 hours sessions over 3 weeks.  Cost is LE 700 per person.</p>
<p>Perhaps you have just got your first camera and want to understand how to use it or perhaps you are a serious hobbyists looking to build a portfolio before turning pro. Whether you are Egyptian, and expat living here, on visiting on holiday or specifically coming to Cairo to participate in one of our workshops, we would be delighted to help you.</p>
<p>Browse the site, find a course and make a booking, or if you have some specific needs or questions then just drop us an <a href="mailto:enquiry@cairophotoschool.com?subject=Individual Enquiry">email.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/04/introducing-the-cairo-photo-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One day Photo Workshops</title>
		<link>http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/</link>
		<comments>http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 19:44:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[One Day Photo workshops]]></category>
		<category><![CDATA[I day Photo Workshops]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=9</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/photo-workshop-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a>The purpose of the Cairo Photo Workshop is not just to give you a guided tour of Cairo or to point out where to get great shots. What we offer are highly tailored courses designed to ensure that you meet your expectations for the day, and that you explore new ideas, techniques and approaches that will help you to develop your photographic vision.  <a href="http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><div class='postTabs_divs postTabs_curr_div' id='postTabs_0_9'>
<span class='postTabs_titles'><b>"Cairo Explorer" Overview</b></span><br />
<a href="http://www.cairophotoschool.com/photo-workshop-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/BirquashCamelSouk-10-300x200.jpg" alt="" title="Formation Camels" width="300" height="200" class="alignleft size-medium wp-image-53" /></a>The purpose of the Cairo Photo Workshop is not just to give you a guided tour of Cairo or to point out where to get great shots. What we offer are highly tailored courses designed to ensure that you meet your expectations for the day, and that you explore new ideas, techniques and approaches that will help you to develop your photographic vision.</p>
<p>These course have no fixed date and no fixed syllabus. They are customized to you to focus on what you want to do or where you feel you need some help.</p>
<p>Our day takes advantage of the constant bustle and vitality of Cairo, its busy streets, it tiny alleyways, local shops and markets. During the day we help you construct a photo essay so that your pictures start to tell a story. The locations we visit offer unlimited opportunities to practice your technique &#8211; to explore different shutter speeds and the effect they have on the aesthetics of the photo; to play with depth of field, exposure compensation, metering and learning how to anticipate the right moment to press the shutter.</p>
<h4>It’s all about “seeing”!</h4>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/coffeeman.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/coffeeman-300x200.jpg" alt="" title="coffeeman" width="300" height="200" class="alignleft size-medium wp-image-220" /></a>A great photographer, <a href="http://www.gavingough.com">Gavin Gough </a>says it is &#8220;all about seeing&#8221; and runs this exercise with all his students. For a short period we will ask you to put your camera away and just use your eyes. We want you to watch, to listen, to feel the potential image that you are about to create.  Photography is about more than just pointing a camera in the right direction and pressing the right buttons. It is, of course, about <strong><em>seeing</em></strong>. We show you how to become more visually aware, how to spot potential stories and just as importantly, how not to waste time taking images that share nothing with the viewer. We&#8217;ll look at your camera, it settings and how you use them, but also try and get you beyond the gear and thinking more about how to interact with your subject.<br />
</div>

<div class='postTabs_divs' id='postTabs_1_9'>
<span class='postTabs_titles'><b> Individual Workshops</b></span></p>
<h4>Individually tailored workshops</h4>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_0254.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_0254-203x300.jpg" alt="" title="IMG_0254" width="203" height="300" class="alignright size-medium wp-image-222" /></a>The Cairo Photo School workshop is designed to be tailored to <em>your</em> specific needs. We do not sheep dip you in a standardized course. We listen to what you are struggling with or what you want to explore and then use our experience and knowledge to structure the day to make sure you leave motivated, inspired and happy.  A typical workshop format would look like this:</p>
<ul>
<li><strong>Half-day</strong>: We meet in El Fishawi cafe for an early morning cup of mint tea and a discussion on what you want from the day. We&#8217;ll review camera settings, how to hold the camera especially in low light, options for composition, metering, depth of field , shutter speeds. We&#8217;ll also have a quick look at how you have set up your camera (depending on the model type). Then it is out into the souk and the bustle of Old Islamic Cairo, to construct a photo story, pausing to review lessons learned over a mid-morning cup of tea. The morning concludes with lunch in a local cafe, where we review the photographs made during the workshop with a discussion about future projects.</li>
</ul>
<ul>
<a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/BirquashCamelSouk-14.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/BirquashCamelSouk-14-200x300.jpg" alt="" title="BirquashCamelSouk-14" width="200" height="300" class="alignleft size-medium wp-image-224" /></a>
<li><strong>Full-day (weekday)</strong>: The morning session follows the format for the half-day tour (above) but after a mid-afternoon break to escape the hottest and brightest part of the day we meet again at about 3pm,  in time to photograph the enchanting Khan el Khalili, El-Moez street and the old Mosques in the best light  of the day. Our afternoon session builds on what we learned in the morning, but we now use the idea of a photo essay to focus our picture taking. This provides a direction and structure to the day and helps you to build your portfolio as well as starting to capture compelling images. As night falls the street cafe get busy, the lights come on and we h get some great opportunities to take some night shots. We finish with a quick bite to eat, a review of the day’s activities and discuss ideas for future projects that you can take away and work on.</li>
</ul>
<ul>
<li><strong>Full-day (Friday)</strong>: Fridays give us the opportunity to go to the famous Birquash Al Gamal Camel market &#8211; about 40 minutes outside Cairo. We start very early &#8211; about 5am. The morning session follows the format for the half-day tour (above) but since the the market is most lively in the mornings we try and make this as practical as possible. After a late morning break we take a taxi into town, and have lunch in the famous El Fishawi cafe before starting again about 3pm to photograph the enchanting Khan el Khalili, El-Moez street and the old Mosques in the best light of the day. Our afternoon session builds on what we learned in the morning, but we now use the idea of a photo essay to focus our picture taking. This provides a direction and structure to the day and helps you to build your portfolio as well as starting to capture compelling images. We finish with a drink and a review of the days images and discuss ideas for future projects that you can take away and work on.</li>
</ul>
<ul>
<li><strong>Full-day (weekend):</strong> Weekend workshops offer an opportunity to move a little out of Cairo and to travel a little further afield. The workshop focuses on the same technical aspects as the weekday course, but the locations now are less well trodden, less touristy and offer an insight into the real Egypt. We&#8217;ll collect you by car and we head out to Abu Simbel, where we have some opportunities to see a different pyramid and spend time with an Egyptian family, who gie us lunch in their wonderful orchard. After lunch we head down to Sakarra and do some more street portraiture as well as spend some time in the fields with the date farmers as they scale the date palms. We head back into Cairo before dusk so that we can capture the Pyramids as light falls. We have camels organized so that we can go out away from the madding crowds and get an unusual aspect of these magnificent constructions and the only remaining 7 wonder of the world. We then go to a local restaurant for a lit bite  a review of the images and discuss ideas for future projects that you can take away and work on</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/#top" target="_self">top</a><br />
</div>

<div class='postTabs_divs' id='postTabs_2_9'>
<span class='postTabs_titles'><b>Price</b></span><br />
<h4 id="price">How much does it  cost?</h4>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/coffeeman.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/coffeeman-300x200.jpg" alt="" title="coffeeman" width="300" height="200" class="alignright size-medium wp-image-220" /></a><strong>Half-Day Tour</strong></p>
<ul>
<li>1-2 people: $350 total</li>
<li>3-6 people: $100 per person</li>
</ul>
<p><strong>Full-Day Tour</strong></p>
<ul>
<li>1-3 people: $600 total</li>
<li>4-6 people: $175 per person</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/" target="_self">top</a><br />
</div>

<div class='postTabs_divs' id='postTabs_3_9'>
<span class='postTabs_titles'><b>What's included</b></span></p>
<h4 id="included">What’s included?</h4>
<ul>
<li>All travel costs</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end (full day only).</li>
</ul>
<h4>What else do I need?</h4>
<p>You will need the following</p>
<ul>
<li>Camera! (although we can also rent you a camera in certain circumstances)</li>
<li>Lenses: wide-angle lenses, medium zooms and fixed focal length lenses are ideal.</li>
<li>Charged batteries</li>
<li>Formatted memory cards</li>
<li>Flash/Strobe – if you especially want to but we discuss various ways   to make the most of the available light</li>
<li>Tripod – useful on the full-day workshops</li>
<li>Sun-screen. Cairo is always sunny</li>
<li>Hat/Scarf – to protect you from the sun, we spend a lot of time outside</li>
<li>Spare shirt/blouse.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/" target="_self">top</a><br />
</div>

<div class='postTabs_divs' id='postTabs_4_9'>
<span class='postTabs_titles'><b>Booking</b></span></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form below. We&#8217;ll get back to you within 24 hours with whether that date works, and if not we will try and provide you with a range of dates. You just need to tell us whether you want a half or full day, how many of you there will be (max is 6), what sort of standard you are.</p>
<p> We&#8217;ll also send you a full  itinerary including a list of what to bring on the day together with a  PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the tour, either in Egyptian Pounds or US Dollars. Please make sure you have read the <a href="http://www.cairophotoschool.com/documents/workshops/cairo/CairoPhotoSchool-T&#038;C.pdf">Terms and Conditions</a>, and that you sign and either send or bring with you the <a href="http://www.cairophotoschool.com/documents/workshops/cairo/CairoPhotoSchool-Liability Waiver.pdf">liability waiver form</a>.<br />

                <div class='gf_browser_unknown gform_wrapper' id='gform_wrapper_1' style='display:none'><form method='post' enctype='multipart/form-data'  id='gform_1'  action='/feed/'>
                        <div class='gform_heading'>
                            <h3 class='gform_title'>One Day "Cairo Explorer" Photo Workshop Booking</h3>
                            <span class='gform_description'>Thank you for wanting to book with the Cairo Photo School for one of our "Cairo Explorer" Workshops. Please fill out the information in the form below and we will be back with out as soon as possible</span>
                        </div>
                        <div class='gform_body'>
                            <ul id='gform_fields_1' class='gform_fields top_label description_below'><li id='field_1_1' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_1_3'>Name<span class='gfield_required'>*</span></label><div class='ginput_complex ginput_container' id='input_1_1'><span id='input_1_1_3_container' class='ginput_left'><input type='text' name='input_1.3' id='input_1_1_3' value='' tabindex='1' /><label for='input_1_1_3'>First</label></span><span id='input_1_1_6_container' class='ginput_right'><input type='text' name='input_1.6' id='input_1_1_6' value='' tabindex='2' /><label for='input_1_1_6'>Last</label></span></div></li><li id='field_1_3' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_3'>Email<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_3' id='input_1_3' type='text' value='' class='medium'  tabindex='3'  /></div></li><li id='field_1_4' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_4'>Phone<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_4' id='input_1_4' type='text' value='' class='medium' tabindex='4' /></div></li><li id='field_1_5' class='gfield' ><label class='gfield_label' for='input_1_5'>Website</label><div class='ginput_container'><input name='input_5' id='input_1_5' type='text' value='http://' class='medium'  tabindex='5'  /></div></li><li id='field_1_11' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_11'>Preferred Workshop date<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_11' id='input_1_11' type='text' value='' class='datepicker medium mdy datepicker_with_icon' tabindex='6' /> </div><input type='hidden' id='gforms_calendar_icon_input_1_11' class='gform_hidden' value='http://www.cairophotoschool.com/wp-content/plugins/gravityforms/images/calendar.png'/></li><li id='field_1_12' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_12'>Number Attending<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_12' id='input_1_12' type='text' value='' class='medium' tabindex='7' /></div></li><li id='field_1_20' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_20'>Half or full day?<span class='gfield_required'>*</span></label><div class='ginput_container'><select name='input_20' id='input_1_20'  class='medium gfield_select' tabindex='8' ><option value='Full Day' selected='selected'>Full Day</option><option value='Half Day' >Half Day</option></select></div><div class='gfield_description'>Do you want to book a full day or half day workshop?</div></li><li id='field_1_6' class='gfield  gsection' ><h2 class='gsection_title'>Your Experience</h2></li><li id='field_1_9' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_9'>I would describe myself as<span class='gfield_required'>*</span></label><div class='ginput_container'><select name='input_9' id='input_1_9' onchange='gf_apply_rules(1,[7,15,15,19,16,19,16]);' class='medium gfield_select' tabindex='9' ><option value='Beginner' >Beginner</option><option value='Keen Amateur Photographer' >Keen Amateur Photographer</option><option value='Semi-Pro Photographer' >Semi-Pro Photographer</option><option value='Full time Photographer' >Full time Photographer</option></select></div></li><li id='field_1_7' class='gfield' style='display:none;'><label class='gfield_label' for='input_1_7'>Number of years as keen photographer</label><div class='ginput_container'><input name='input_7' id='input_1_7' type='text' value='' class='medium' tabindex='10' /></div></li><li id='field_1_15' class='gfield  gsection' style='display:none;'><h2 class='gsection_title'>Professionals Only</h2></li><li id='field_1_19' class='gfield               gfield_contains_required' style='display:none;'><label class='gfield_label' for='input_1_19'>Photographic Area<span class='gfield_required'>*</span></label><div class='ginput_container'><select name='input_19' id='input_1_19'  class='medium gfield_select' tabindex='11' ><option value='Cultural/Humanitarian' >Cultural/Humanitarian</option><option value='Fashion' >Fashion</option><option value='Landscape' >Landscape</option><option value='Music/Arts' >Music/Arts</option><option value='Photo journalism' >Photo journalism</option><option value='Portrait' >Portrait</option><option value='Travel' >Travel</option><option value='Wedding' >Wedding</option><option value='Other' >Other</option></select></div><div class='gfield_description'>Please select your primary revenue generating area of photography</div></li><li id='field_1_16' class='gfield               gfield_contains_required' style='display:none;'><label class='gfield_label' for='input_1_16'>No of years pro<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_16' id='input_1_16' type='text' value='' class='medium' tabindex='12' /></div><div class='gfield_description'>How long have you been a full time photographer</div></li><li id='field_1_17' class='gfield  gsection' ><h2 class='gsection_title'>About You and your photography</h2></li><li id='field_1_10' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_10'>Camera<span class='gfield_required'>*</span></label><div class='ginput_container'><select name='input_10' id='input_1_10'  class='medium gfield_select' tabindex='13' ><option value='Canon' >Canon</option><option value='Nikon' >Nikon</option><option value='Other' >Other</option></select></div></li><li id='field_1_13' class='gfield' ><label class='gfield_label' for='input_1_13'>Workshop Aims</label><div class='ginput_container'><textarea name='input_13' id='input_1_13' class='textarea medium' tabindex='14'  rows='10' cols='50'></textarea></div><div class='gfield_description'>What would you liek to achieve form the workshop? Is there an area in paritcular you want us to focus on with you</div></li><li id='field_1_14' class='gfield' ><label class='gfield_label' for='input_1_14'>I am a human!</label><script type='text/javascript'>//<![CDATA[
 var RecaptchaOptions = {theme : 'red', lang : 'en'}; if(parseInt('15') > 0) {RecaptchaOptions.tabindex = 15;} 
//]]&gt;</script><div class='ginput_container' id='input_1_14'><script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6LdqjAwAAAAAAKz2qKDvl9mtci0-5yVmDQ0G6EL0 "></script>

	<noscript>
  		<iframe src="http://www.google.com/recaptcha/api/noscript?k=6LdqjAwAAAAAAKz2qKDvl9mtci0-5yVmDQ0G6EL0 " height="300" width="500" frameborder="0"></iframe><br/>
  		<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
  		<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
	</noscript></div><div class='gfield_description'>Boring but necessary! Please enter the two words exactly as you see them. You can always refresh the words if you find them difficult to read</div></li>
                            </ul></div>
        <div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_1' class='button gform_button' value='Submit' tabindex='16' />
            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='4f2e8d3a7164b' />
            <input type='hidden' class='gform_hidden' name='state_1' value='YToyOntpOjA7czo2OiJhOjA6e30iO2k6MTtzOjMyOiI3MWNlMWY3NDAxZGZmNjQzNjk4Y2Q5NzA5YjdkNGI4MSI7fQ==' />
            <input type='hidden' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' />
            <input type='hidden' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' />
            <input type='hidden' name='gform_field_values' value='' />
            
        </div>
                </form>
                </div><script type='text/javascript'>//<![CDATA[
if(window['jQuery']){jQuery(document).ready(function(){gf_apply_rules(1, [7,15,19,16], true);jQuery('#gform_wrapper_1').show(0, function(){if(window['gformCalculateTotalPrice']){window['gformCalculateTotalPrice'](1);} });});if(!window['gf_form_conditional_logic'])window['gf_form_conditional_logic'] = new Array();window['gf_form_conditional_logic'][1] = {'logic' : {7: {"field":{"actionType":"show","logicType":"any","rules":[{"fieldId":"9","operator":"is","value":"Keen Amateur Photographer"},{"fieldId":"9","operator":"is","value":"Semi-Pro Photographer"}]},"nextButton":null,"section":""},15: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]},"nextButton":null,"section":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]}},19: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]},"nextButton":null,"section":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]}},16: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]},"nextButton":null,"section":{"actionType":"show","logicType":"all","rules":[{"fieldId":"9","operator":"is","value":"Full time Photographer"}]}} }, 'dependents' : {7: [7],15: [15,19,16],19: [19],16: [16] }, 'animation' : 0 }; } 
//]]&gt;</script><br />
[Tab:END]</p>
</div>

<script type='text/javascript'>jQuery(document).ready(function() { if(postTabs_getCookie('postTabs_9')) postTabs_show(postTabs_getCookie('postTabs_9'),9); });</script>]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/04/one-day-photo-workshops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Street Portraiture</title>
		<link>http://www.cairophotoschool.com/2010/04/street-portraiture/</link>
		<comments>http://www.cairophotoschool.com/2010/04/street-portraiture/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 20:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Street Portraiture]]></category>
		<category><![CDATA[Photography Courses]]></category>
		<category><![CDATA[Street Portriature]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=30</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a><p>Street portraiture is all about relating to your subject. It is about story telling and about the relationships and consequently about trust. How do you build that trust in the instant you need to take the picture? How do you approach a complete stranger and persuade them to all you to take their photograph, especially if you don't speak their language. What lens should you use? What angle should you take form? What should be in the background and why?</p><a href="http://www.cairophotoschool.com/2010/04/street-portraiture/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a>Street portraiture is all about relating to your subject. It is about story telling and about the relationships and consequently about trust. How do you build that trust in the instant you need to take the picture? How do you approach a complete stranger and persuade them to all you to take their photograph, especially if you don&#8217;t speak their language. What lens should you use? What angle should you take form? What should be in the background and why?</p>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/beggar.png"><img class="alignleft size-medium wp-image-51" title="beggar" src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/beggar-225x300.png" alt="" width="225" height="300" /></a>Many people struggle to get out from behind their viewfinder or their long lens. Shyness and fear of rejection are a part of it. Not knowing just how to handle the situation once you&#8217;re in it, is another or uncertainty about which angle or composition style to use is a third.</p>
<p>The street portraiture course aims to overcome these obstacles. We focus on how to approach people, how to build their trust, which lenses to use and why &#8211; shorter is better here and I  we know you think that long lenses would be the obvious choice. We&#8217;ll show you why not!  The result are nothing short of powerful!</p>
<p>This is an entirely practical one day course. We meet at a small cafe at a busy market or intersection and discuss what we are going to do. The day follows a series of exercise and examples designed to overcome the obstacles as well as to get some great images.Over lunch and at the end of the day we look at your images and discuss plans, ideas and opportunities for you to focus on after the course.</p>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_0254.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_0254-203x300.jpg" alt="" title="IMG_0254" width="203" height="300" class="alignright size-medium wp-image-222" /></a><br />
<h4>Lesson plan</h4>
<ul>
<li>Incorporating Shorter Lenses into Your Work</li>
<li>Approaching Strangers with Confidence</li>
<li>Making the Best of Light and Perspective</li>
<li>Seeing Photographs amid Seeming Chaos</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/street-portraiture/" target="_self">top</a></p>
<h4 id="price">How much does it cost?</h4>
<ul>
<li>1-3 people: $500 total</li>
<li>4-6 people: $125 per person</li>
</ul>
<h4 id="included">What’s included?</h4>
<ul>
<li>All travel costs</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end  of the day.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/street-portraiture/" target="_self">top</a><br />
<a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/dervishes-59-Edit-2.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/dervishes-59-Edit-2-198x300.jpg" alt="" title="dervishes-59-Edit-2" width="198" height="300" class="alignleft size-medium wp-image-280" /></a><br />
<h4>What else do I need?</h4>
<p>You will need the following</p>
<ul>
<li>Camera! (although we can also rent you a camera in certain circumstances)</li>
<li>Lenses: wide-angle lenses, medium zooms and fixed focal length lenses are ideal.</li>
<li>Charged batteries</li>
<li>Formatted memory cards</li>
<li>Flash/Strobe – if you especially want to but we discuss various ways   to make the most of the available light</li>
<li>Tripod – useful on the full-day workshops</li>
<li>Sun-screen. Cairo is always sunny</li>
<li>Hat/Scarf – to protect you from the sun, we spend a lot of time outside</li>
<li>Spare shirt/blouse.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/street-portraiture/" target="_self">top</a></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form. We&#8217;ll get back to you within 24 hours with whether that date works, and i f not we will try and provide you with a range of dates. You just need to tell us how many of you there will be (max is 6) and what sort of standard you are.</p>
<p> We&#8217;ll also send you a full  itinerary including a list of what to bring on the day together with a  PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the day, either in Egyptian Pounds or US Dollars.<br />
<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/04/street-portraiture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Photography</title>
		<link>http://www.cairophotoschool.com/2010/04/creative-photography/</link>
		<comments>http://www.cairophotoschool.com/2010/04/creative-photography/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 19:50:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Creative Photography]]></category>
		<category><![CDATA[Creative Photography Courses]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=14</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a>Our creative Photography course is a one-day deep dive into techniques and composition to give your images that creative flair. Suitable for photographers of any standard and with any camera. It is designed to fire that creative spirit that you know is there, but are struggling to utilize in your images!  <a href="http://www.cairophotoschool.com/2010/04/creative-photography/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/Panning-33.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/Panning-33-300x200.jpg" alt="Creative workshops" title="Panning-33" width="300" height="200" class="alignright size-medium wp-image-40" /></a>Creative photography is all about understanding what different effects can be used by combining naturally occurring visual cues like patterns, reflections, colors, light with those technical choice available with the camera &#8211; perspective, angles, compositional rules, shutter speeds, zooming etc.</p>
<p>We split the day into a morning session which is classroom based and more theoretical &#8211; although not entirely! &#8211; and an afternoon session which is entirely practical. In the morning we examine the different options available to us with the camera, look at some images and discuss what worked and what did not. We practice some basic techniques so that when we got out in the afternoon you are fully able to focus on e the creative portion of this course. amid the bustle of Cairo </p>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_5853.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/IMG_5853-199x300.jpg" alt="" title="IMG_5853" width="199" height="300" class="alignleft size-medium wp-image-146" /></a>Typically we will look to cover these sort of topics in the morning:</p>
<ul>
<li>Patterns, reflections and color tones</li>
<li>Taking images from different perspectives or camera angles</li>
<li>Impact of light on creative photography
<li>
<li>Compositional rules and how to break them for creative effect</li>
<li>How to use exposure settings creatively.</li>
<li> Camera settings and how to exploit them for creative effect</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/creative-photography/" target="_self">top</a></p>
<h4 id="price">How much does it cost?</h4>
<ul>
<li>1-3 people: $500 total</li>
<li>4-6 people: $125 per person</li>
</ul>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/51-2sx800.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/51-2sx800-199x300.jpg" alt="" title="51-2sx800" width="199" height="300" class="alignright size-medium wp-image-129" /></a><br />
<h4 id="included">What’s included?</h4>
<ul>
<li>All travel costs</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end  of the day.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/creative-photography/" target="_self">top</a></p>
<h4>What else do I need?</h4>
<p>You will need the following</p>
<ul>
<li>Camera! (although we can also rent you a camera in certain circumstances)</li>
<li>Lenses: wide-angle lenses, medium zooms and fixed focal length lenses are ideal.</li>
<li>Charged batteries</li>
<li>Formatted memory cards</li>
<li>Flash/Strobe – if you especially want to but we discuss various ways   to make the most of the available light</li>
<li>Tripod – useful on the full-day workshops</li>
<li>Sun-screen. Cairo is always sunny</li>
<li>Hat/Scarf – to protect you from the sun, we spend a lot of time outside</li>
<li>Spare shirt/blouse.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/creative-photography/" target="_self">top</a></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form. We&#8217;ll get back to you within 24 hours with whether that date works, and i f not we will try and provide you with a range of dates. You just need to tell us how many of you there will be (max is 6) and what sort of standard you are.</p>
<p> We&#8217;ll also send you a full  itinerary including a list of what to bring on the day together with a PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the day, either in Egyptian Pounds or US Dollars.<br />
<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/04/creative-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private Tuition</title>
		<link>http://www.cairophotoschool.com/2010/03/private-tuition/</link>
		<comments>http://www.cairophotoschool.com/2010/03/private-tuition/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Private Tuition]]></category>
		<category><![CDATA[Photography Courses]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=20</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a>We are able to provide private tuition around most aspect of photography. Whether it is a new camera, just starting out, wanting to work with off-camera flash, looking to explore more advanced composition or creative techniques, we can tailor make a course for you for a few hours to a few months, as one off , evening classes or just regular days out accompanied by a tutor.<br /><a href="http://www.cairophotoschool.com/2010/03/private-tuition/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p>We are able to provide private tuition around most aspect of photography. Whether it is a new camera, just starting out, wanting to work with off-camera flash, looking to explore more advanced composition or creative techniques, we can tailor make a course for you for a few hours to a few months, as one off , evening classes or just regular days out accompanied by a tutor.</p>
<p>Costs will vary depending on whether this is a 1 on 1 course, 2-4 people, in Cairo or going further afield and whether it is concentrated &#8211; maybe over a few days back to back &#8211; or whether its is spread out over a period of time.</p>
<p>To discuss the specific requirement and to get a quote, please call <a title="ramysalem" href="http://www.ramysalem.com" target="_blank">Ramy</a> +20 103144474 or Marco on +20 168107343</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/03/private-tuition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Studio Lighting – An introduction</title>
		<link>http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/</link>
		<comments>http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Studio introduction]]></category>
		<category><![CDATA[Commercial]]></category>
		<category><![CDATA[Photography Courses]]></category>
		<category><![CDATA[Studio]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=18</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a> <p>This course is aimed at those who want to explore the controlled lighting environment of the studio. Aimed at beginners and intermediates alike we explore the different types of artificial light, as well as show you the effects of the different studio equipment on the final image.</p><a href="http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/2544626290_ac63ce515a.jpg"><img class="aligncenter size-full wp-image-56" title="2544626290_ac63ce515a" src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/2544626290_ac63ce515a.jpg" alt="" width="500" height="333" /></a><br />
This course is aimed at those who want to explore the controlled lighting environment of the studio. Aimed at beginners and intermediates alike we explore the different types of artificial light, as well as show you the effects of the different studio equipment on the final image.</p>
<p>We cover barn doors, snoots, beauty dish, Octa-panels, spots, soft-boxes, umbrellas, light tents, tungsten and off camera flash. We will show you how to meter, how to set up your camera, how to to use backdrops, reflectors every possible different combination of studio equipment. By the end of the day you will have the confidence in how to use artificial light in a studio environment to create the type of image that you want.</p>
<p> once you have attended one of our studio course you will be eligible to rent the studio at a discounted rate to continue exploring and developing your studio skills.</p>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/" target="_self">top</a><br />
<a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123234101.uCFb8SOm.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123234101.uCFb8SOm-201x300.jpg" alt="" title="123234101.uCFb8SOm" width="201" height="300" class="alignleft size-medium wp-image-328" /></a></p>
<h4 id="price">How much does it cost?</h4>
<ul>
<li>1-3 people: $600 total</li>
<li>4-6 people: $160 per person</li>
</ul>
<h4 id="included">What’s included?</h4>
<ul>
<li>All equipment (including camera)</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end of the day.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/" target="_self">top</a></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form. We&#8217;ll get back to you within 24 hours with whether that date works, and if not we will try and provide you with a range of dates. You just need to tell us how many of you there will be (max is 6) and what sort of standard you are.</p>
<p> We&#8217;ll also send you a PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the day, either in Egyptian Pounds or US Dollars.<br />
<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/03/studio-lighting-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Studio Photography – Fashion and Commercial</title>
		<link>http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/</link>
		<comments>http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:51:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Studio Photography – Fashion and Commercial]]></category>
		<category><![CDATA[Commercial]]></category>
		<category><![CDATA[Fashion]]></category>
		<category><![CDATA[Photography Courses]]></category>
		<category><![CDATA[Studio]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=16</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-235" /></a><p>The course is a mix of theoretical and practical, although most of the theory is taught in the studio, rather than the classroom. We take you from the preparation, the set-up the briefing with the model or product client, the shoot list, the lighting set-ups, tethered shooting, and post-processing.By the end of the course you will have a small collection of high quality fashion and commercial images.</p><a href="http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/DSC_0065.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/DSC_0065-300x200.jpg" alt="" title="DSC_0065" width="300" height="200" class="alignleft size-medium wp-image-159" /></a></p>
<p>This two-day course covers how to shoot images for fashion and commercial clients. We provide both a model and various still-life and commercial products as subjects for you to understand the different lighting, composition and effect that each of these type of clients would demand. The course can be split down into two single course of one day each, but a discount is offered for those attending the 2 day back-back course. You can find out more details of the single-day course, <a href="http://www.cairophotoschool.com/courses/studio-courses/">here.</a></p>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123382749.BlkvBhQI.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123382749.BlkvBhQI-300x202.jpg" alt="" title="123382749.BlkvBhQI" width="300" height="202" class="alignleft size-medium wp-image-337" /></a>
<p>The course is a mix of theoretical and practical, although most of the theory is taught in the studio, rather than the classroom. We take you from the preparation, the set-up the briefing with the model or product client, the shoot list, the lighting set-ups, tethered shooting, and post-processing.By the end of the course you will have a small collection of high quality fashion and commercial images.</p>
<p><em><strong>Please note:</strong></em> This course is aimed at those who have already completed the <a href="http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/">Studio -Lighting Introduction Course</a> or those who have had some experience working in a studio and are proficient with the topics covered in the introductory course. If you are in doubt, we recommend that you do the introductory course and we will adjust the schedule for you accordingly.</p>
<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123234101.uCFb8SOm.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/03/123234101.uCFb8SOm-201x300.jpg" alt="" title="123234101.uCFb8SOm" width="201" height="300" class="alignleft size-medium wp-image-328" /></a></p>
<h4 id="price">How much does it cost?</h4>
<ul>
<li>1-3 people: $600 total</li>
<li>4-6 people: $160 per person</li>
</ul>
<h4 id="included">What’s included?</h4>
<ul>
<li>All equipment (including camera)</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end of the day.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/" target="_self">top</a></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form. We&#8217;ll get back to you within 24 hours with whether that date works, and if not we will try and provide you with a range of dates. You just need to tell us how many of you there will be (max is 6) and what sort of standard you are.</p>
<p> We&#8217;ll also send you a PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the day, either in Egyptian Pounds or US Dollars.<br />
<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/03/studio-photography-fashion-and-commercial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Off camera flash</title>
		<link>http://www.cairophotoschool.com/2010/03/off-camera-flash/</link>
		<comments>http://www.cairophotoschool.com/2010/03/off-camera-flash/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 15:32:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Off-camera Flash]]></category>

		<guid isPermaLink="false">http://www.cairophotoschool.com/?p=340</guid>
		<description><![CDATA[<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a><p>Ever since the 1970's photographers have had in their camera bags small flexible and surprisingly powerful electronic flash units. Now with the remote exposure control that the Nikon CLS and Canon E-TTL systems give remarkable ability for the photographer to take their little strobes and produce the kind of lighting that most people think that only large and expensive studio strobes can produce but in a small, inexpensive and quick to use package.</p><a href="http://www.cairophotoschool.com/2010/03/off-camera-flash/" />Read more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cairophotoschool.com/wp-content/uploads/2010/04/off-camera-flash-lead.jpg"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/04/off-camera-flash-lead-300x208.jpg" alt="" title="off camera flash lead" width="300" height="208" class="alignleft size-medium wp-image-346" /></a>
<p>Ever since the 1970&#8242;s photographers have had in their camera bags small flexible and surprisingly powerful electronic flash units. Now with the remote exposure control that the Nikon CLS and Canon E-TTL systems give remarkable ability for the photographer to take their little strobes and produce the kind of lighting that most people think that only large and expensive studio strobes can produce but in a small, inexpensive and quick to use package.</p>
<p>This course is designed to show you just how powerful and flexible off camera flash can be, and the endless opportunities it provides you for creativity and for getting great exposures in complex lighting situations. </p>
<p>We combine two speedlights with two light stands, an umbrella and a clamp and the result is a small portable studio or location lighting setup that will give you professional results for a fraction of the cost and bulk of a &#8220;studio strobe&#8221; kit. We will show you how all of this is possible as well as how to do things with these small strobes that you can&#8217;t do with big lights.</p>
<h4>Lesson plan</h4>
<ul>
<li>Understanding lighting controls: color, contrast and light quality</li>
<li>Controlling lights in the field: placement and exposure</li>
<li>Lighting portraits 1: working with natural light</li>
<li>Lighting portraits 2: overpowering natural light</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/off-camera-flash/" target="_self">top</a></p>
<h4 id="price">How much does it cost?</h4>
<ul>
<li>1-3 people: $400 total</li>
<li>3-6 people: $125 per person</li>
</ul>
<h4 id="included">What’s included?</h4>
<ul>
<li>All equipment (including camera)</li>
<li>Lunch</li>
<li>You need only bring enough local currency for refreshments and dinner at the end of the day.</li>
</ul>
<p><a title="Top" href="http://www.cairophotoschool.com/2010/03/off-camera-flash/" target="_self">top</a></p>
<h4 id="booking">Booking</h4>
<p>Booking could not be simpler. You just need to complete the booking form. We&#8217;ll get back to you within 24 hours with whether that date works, and if not we will try and provide you with a range of dates. You just need to tell us how many of you there will be (max is 6) and what sort of standard you are.</p>
<p> We&#8217;ll also send you a PayPal invoice for 50% of the total cost. The remaining amount is payable at the conclusion of the day, either in Egyptian Pounds or US Dollars.<br />
<a href="http://www.cairophotoschool.com/one-day-course-booking-form/"><img src="http://www.cairophotoschool.com/wp-content/uploads/2010/05/booknow.png" alt="" title="book" width="70" height="33" class="alignright size-full wp-image-227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cairophotoschool.com/2010/03/off-camera-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

