About rsmith4321

Wedding and Family photographer.

Fun engagement portraits and getting a new lens

I’ve had a lot of really nice engagement portrait sessions this winter.  The weather has been fantastic, I’ve noticed I had more work this winter then last year probably because of the nice weather.  I actually don’t have anything scheduled this weekend, but I have a couple of engagement session for the next.

I’m getting a new portrait lens the Sigma 85mm f1.4.  You might wonder why I’m not buying the Nikon version of this lens.  I almost exclusively use Nikon, my go to lenses the 24-70 f2.8 and 70-200 f2.8 are fantastic.  Ryan Brenizer, a photographer I really trust, reviewed the Sigma lens and really loved it.  With the problems in Japan, Nikon lenses are so expensive and hard to get right now, I just decided to go with the Sigma instead.  The reason I’m mentioning this, is this will probably be my new lens for engagement pictures, at least for many shots.  For example the Bokeh, or out of focus sun coming through the trees in the first image, with the 85mm prime lens at f1.4 would be much creamier and and softer.  It makes for a really amazing look.  It’s harder to use a prime lens of course, because you have to zoom with your feet.  Also accurate focus is critical when shooting at very wide apertures like f1.4.  I’m going to give the lens a good try and I’ll probably write a review myself as well.

The couple featured below was a lot of fun.  They haven’t set a date for the wedding yet, so I was just doing engagement pictures separately from the wedding.  They were very happy and couldn’t stop smiling at each other, it made for a lot of fun candid shots.  I hope you enjoy some of the pictures below.

Engagement portrait in front of the oak trees - Myrtle Beach State Park

Engagement portrait in front of the oak trees - Myrtle Beach State Park

Couple sitting on the oak tree in black and white. - Myrtle Beach State Park

Couple sitting on the oak tree in black and white. - Myrtle Beach State Park

Click here to continue viewing more pictures from the post "Fun engagement portraits and getting a new lens"

Creating Apple.com style HTML5 box gradients

The title of this post probably just turned off most readers, but if you make your own website you should read on.  Anyone who has followed me for long knows I’m into website design, not the out of date Flash sites, but using modern techniques like HTML5 and CSS3.  You will miss a lot of subtle effects on my website if you are not using a modern browser, of course everything will still work.

I figured if there is a company that knows subtle style it would be Apple, of course after their leather bound iPad calendar app this could be argued.  Their website uses very little color, just some very slight shades of grey, except for their products that really pop off the page.  You might notice my website tries to do the exact same thing with my photography.

I was studying Apple’s website, and like the way boxes that contain information look, for example on their store page.

It might be hard to see in this picture. But the box has a very slight gradient that gets much stronger near the bottom of the box.  There is also a very slight drop shadow on the bottom that makes the box looked slightly raised off the page.  I don’t know how Apple does it, but I thought I could do this with CSS3.  This means the effect can be done without using any images or gradients made in Photoshop.

While you could try to figure out the code for this manually.  The gradient generator from Colorzilla.com http://www.colorzilla.com/gradient-editor/ is fantastic.  It can create gradients similar to Photoshop that have color stops that work in most web browsers, even older IE versions. What the color stop lets you do, is instead of having a gradient that changes shade evenly from top to bottom, you can do, like Apple does, and have it change very little until the bottom portion of the box where it increases.  Here is the exact code I use to get a very similar gradient as well as drop shadow on my boxes like on the Apple Store website, even a slight roundness to the corners. To put a box like this anywhere on your page just use something like . . .

<div class="myBoxes">Whatever I want inside</div>

Then in your css file . . .

.myBoxes {
padding: 10px;
background: rgb(255,255,255);
/* Old browsers */ /* IE9 SVG, needs conditional override of 'filter' to 'none' */background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmN2Y3ZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(253,253,253,1) 75%, rgba(247,247,247,1) 100%); /* FF3.6+ */;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(75%,rgba(253,253,253,1)), color-stop(100%,rgba(247,247,247,1))); /* Chrome,Safari4+ */;
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* Chrome10+,Safari5.1+ */;
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* Opera 11.10+ */;
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* IE10+ */;
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(253,253,253,1) 75%,rgba(247,247,247,1) 100%); /* W3C */;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-8 */;
	-webkit-box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 1px 0px rgba(50, 50, 50, 0.5);
border: 1px #CDCDCD solid;
border-radius: 5px;
}

This may look complicated, but play around with the gradient generator and you can make your own easily.  Or if you want to try my code, just paste this into your CSS for any <div>. There is a small hack you have to do to get it working properly in IE9, but it explains how to do it on Colorzilla’s site.  I hope any web developers find this helpful, if you do or if you need more explanation let me know in the comments below.

Engagement portraits at Magnolia Plantation in Charleston, SC

This is my first time visiting the Magnolia Plantation.  It’s a very nice area, it reminds me a lot of Brookgreen Gardens.  Unlike Brookgreen though we were allowed to go wherever we wanted to do the pictures and spend as much time as well.  I had a lot of fun walking around for an hour or so with the couple and finding places to do shots.  The first time to an area takes a bit of experimenting and exploring around.

We had some pretty strong early afternoon sunlight which can be difficult at the beach or in an open area, but being in a nice area with plenty of trees and shade it’s not really a problem.  In fact the strong sun gives some nice Bokeh from the pinpoints of light reflecting off the trees, you can see this especially on the first image.  You can tell if someone has a really good lens not by looking at what is in focus, but by looking at the quality of the out of focus areas.

I really liked the old fence where the horses were as well, you can see a number of shots from that spot below.  The bamboo was really cool as well, but what I really wanted was evening sun showing through the Bamboo, and I couldn’t really get that, I’ll try again at this couple’s wedding in December. It should be very nice and will be later in the day so things should go even better.  Let me know in the comments if you like the pictures.

Kiss on a bridge, shot with 70-200 f2.8 - Magnolia Plantation Charleston

Kiss on a bridge, shot with 70-200 f2.8 - Magnolia Plantation Charleston

Kiss in front of a lake, push process black and white  - Magnolia Plantation Charleston

Kiss in front of a lake, push process black and white - Magnolia Plantation Charleston

Click here to continue viewing more pictures from the post "Engagement portraits at Magnolia Plantation in Charleston, SC"

After wedding pictures at the Myrtle Beach State Park

Now that things have slowed down some I’m going to try and go back and blog about some of my previous weddings and events.  This couple was married the day before, and just wanted to do some portraits of the two of them.  The Myrtle Beach State Park is really a great place for pictures because of the options like the oak trees, the pier and the really nice dunes, all in the same location.  Also, it’s out of the Myrtle Beach city limits, so you don’t get in trouble for doing picture there.  The only thing is, you have to be really careful about getting on the dunes.  I still see other photographers getting in trouble with the park rangers sometimes.  I saw this one photographer recently not only up on top of the dunes and getting talked to by a park ranger, but also waist deep in the swash trying to photograph a model, which is highly contaminated with bacteria.

Back to this couple, the evening turned out to be great with some really nice colors in the sky.  I was even able to catch some of the seagulls flying by in a few shots, which is really cool of you happen to get it.  This is a good example of how you can get some really nice pictures no matter how big your wedding is, I just did this like I would do any set of family or engagement pictures and got a lot of nice shots.  I hope you enjoy some of them below.

Couple sitting on oak tree root

Couple sitting on oak tree root

Bride leaning against oak tree - Myrtle Beach State Park

Bride leaning against oak tree - Myrtle Beach State Park

Click here to continue viewing more pictures from the post "After wedding pictures at the Myrtle Beach State Park"