
Photos in print are much harder to brand than photos on your website. If your printing in any great quantity, the tedious process of writing out your name, website, and other pertinent information on the flip side becomes insurmountable. Secondly, most photographic papers have a resin-coated backing, which stubbornly refuses any water-based inks. My methods in this article are aimed toward unframed 4*6 prints, as that’s what I deal with myself, but they can be easily applied to other formats. In fact, the fundamentals of permanence at the end are essential to any print medium.
Whether your printing photos for your friends, family, art, or business, it is doubtless that any copies floating about can make convincing advertisements. Your very livelihood is at stake; what can you do to make sure that everyone knows that you are the creator of those photographic masterpieces? Luckily, you do have options.
1. Put your name right on the front of the print, straight from the digital source files. This is an easy way to demarcate your work; you don’t have to deal with any hand writing or messy backprinting. Unfortunately, it’s a bit distracting, and anything more than the title and your name is pushing it; include your website and the text will get more attention than the photo. Plus, if you’re going to put the info anywhere, it’ll have to be at the edge of the print, perhaps in a border surrounding the image. You’re going to have to deal with the bleed edge, and it’s a pain because what looks fine on the screen will often get cut off in a borderless print. This becomes especially important if you’re out-sourcing to …
... continue reading
I was looking for ways to optimize my website . . . to make it quicker and easier for me to maintain and update, while being fun to browse for my visitors. The problem with the old gallery and random photos at the top of each page, was that I had to make the thumbnails and update the page and database for both (I was using the this randomizer plugin for Wordpress), each time I added a photo. It was good because I’d crop, scale down, and sharpen each image to look its best, but the extra work was too much. I found the Post Thumb plugin is the perfect solution. I installed it, set it to make 100×70 thumbnails, and then added this code to my blog header:
<?php the_random_thumb(”link=p&limit=5&category=8″); >
That makes it show five random photos from the category for my photos, linking to the page for each instead of the file. The great thing here is that the thumbnail folder and accompanying MySQL table is updated automatically, so photos are added to the pool as soon as I publish them. A random photos section is good for the casual browser, who just looks at what catches his eye.
Next, I wanted to create a dynamic gallery and random image page. I added the Exec-PHP plugin so I could use PHP code in pages and posts, but found that Wordpress inserts a line break between each thumbnail, against my wishes. For that, I added this modified version of Text Control by Jeff Minard, then setting it to not auto-format the gallery and random pages.
The code for page one of the gallery is:
<?php the_recent_thumbs(”subfolder=g&width=200&height=160&link=p&limit=60&category=8″); ?>
and for page two:
<?php the_recent_thumbs(”subfolder=g&width=200&height=160&link=p&limit=60&offset=60&category=8″); ?>
The
