Where do you find images to use?

I’m not really stuck on a lesson, but I’m wondering where to find images to use on a website. Where do you find those that are in the public domain vs. lifting an image that might be copyrighted off someone else’s page? Would the image have to inhabit its own webpage/web address to have its code/address used to generate an image on your own page?

This is the lesson page: https://www.codecademy.com/courses/learn-html-css/lessons/common-elements/exercises/img-src?action=lesson_resume

Thanks

Qathe



Replace this line with your code. 


For this exercise the images are provided. However, if you wish to practice with some other images, then use a public image host as a source. Wikipedia Commons has lots of public domain images, but be sure to read their sharing policy on anything you ‘borrow’ to be sure it is intended for public consumption. The attribution information is at the bottom of the image page.

If you have images of your own, there is a trick to get them onto CC’s server. Upload the image in a forum post, then copy the URL that CC assigns the image. Be sure to wait until the image is uploaded and showing in the post sample at right. It is permanently stored (as long as there is a reference to it ON THEIR SITE). Paste the URL into an image tag (or just copy the whole image tag and paste it) in your exercise and it should be good to go.

Once the image shows up in your exercise, you are free to cancel the post entry. Don’t submit the post entry, just use the editor to retrieve the image from your local volume. This way you can cancel, and not create a new topic or reply.

Many of the exercises have provided image URLs that you are also able to copy and use elsewhere on the site.

Thank you! I might be getting ahead of myself, but was curious for future reference if I need to use images for a site I’m creating. Like, if I had a photo of my own I wanted to upload.

Q

Ah, that makes sense. Wasn’t sure of the context. Images that are your own, meaning you photographed the subject with your camera or created the image with an art studio, or out and out bought the rights to, are called proprietary assets. Images we have permission to use usually come with the requirement that we host them ourselves and sometimes attribution on the page(s) where they are used. A fair arrangement that lumps this group in with the rest, mentioned above.

Proprietary assets we would host on our own domain so we never give up ownership. The definition of Public Domain is not on the tip of my tongue just now, but I have always been of the belief that if one publishes a photo on a publicly accessed web site that is not their own, and does not clearly mark with a copyright symbol, year and owner either directly or in the footer credits, the photo falls into the Public Domain. This bears further research, but signals how we must protect what we own and value.

There are many ways we can protect our images, copyright ownership being at the head of the list, but also how we publish them. For starters, upload them to an assets folder, not an images folder. Then in robots.txt disallow access to the assets folder. Google and other search engines look for the images folder. The pictures that you don’t want indexed go into your assets folder. The ones you do, go into the images folder.

That buys some obscurity and helps prevent the URI’s from leaking out onto the internet via search. Google, et al will be content to crawl your images folder and depending on the importance they deduce in the page(s) where the images appear may index them. Now they will come up in image search results, and where most people snag them.

Only put pictures on your site that you own, the exception being those used with permission or drawn from (and confirmed to be in) the Public Domain. Never hot-link to another domain unless it is intended for that purpose. Image hosting sites are not Public Domain. The members who use the service still maintain ownership of their images. To use their pictures one would still need permission, and then hot-linking is okay.

Hot-linking steals bandwidth for the hosting domain. It may seem innocent enough, but it is theft. That’s why permission is so important. If the host doesn’t care about the bandwidth, permission can be easily granted. If they do care, and they still give permission to use their image, then you host the image and pay for the bandwidth. Fair arrangement all around.

Where the harm of hot-linking can really add up is when a page goes viral. A million or more hits a day, or 10 million, or more, means the images are served out that many times. If there are multiple images in each request, multiply the damage even further. Ten 100K pictures is 1MB. A thousand hits is 1GB. A million hits is 1TB, so 10 TB would be a huge hit on that poor person’s otherwise relatively quiet server. Making sense?

Another thing about published images that prevents theft is quality. The lower the quality or the smaller the image, the less likely it will be scraped. Nobody is going to steal a 400 X 300 JPG with 70% quality. But a 750 X 600 with 100% quality (no compression) is tempting, especially if it is a compelling image.

Now if you want to display a high quality image, that’s okay. Just don’t do it on a landing page (one that is referred from SERP’s or other sites, FB, etc.). Make the visitor click their way to the secondary page where the image can be found. Be sure the page has a NOINDEX robots directive in the head meta data.

<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>

The Web Robots Pages

This will keep it from getting indexed. The lower quality one on the landing page is the one that will be indexed. If you want to keep people from right clicking the image, put the image in with an absolutely positioned, transparent layer above it. Now when the user right clicks the image there won’t be a reference to the image properties or URL. Again, though, do some compression to scale back the quality. 80% is plenty good. And it saves on your page load times.

I think this is going to be a lot of information for you to digest, and hope that I at least answered your question to some degree, what with all the prattling on about assets.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.