March 8, 2012, 5:02 pm
I've always figured a little hotlinking of my images is probably good
because I might get a few extra visitors from it. But every once in a
while someone will hotlink one of my images in a forum post on a very
popular web site and all of my allocated bandwidth gets burned up within
a relatively short period of time. When that happens I have to increase
the bandwidth and rename the image file in question.
I can afford the extra bandwidth but it is rather annoying to find out
that one of my sites is down because this has happened again. OTOH, I am
reluctant to ban all hotlinking because most of the time it's not a
problem.
Opinions?
--
Red
Re: Hotlinking
Red, I don't allow hotlinking. The main reason is, although they may
use an image from my site, they seldom give credit to the source. And
very few people will look at the URL for the image and visit the source
site.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Hotlinking
I'm not much in favor allowing hotlinks either. Back when I cared, I
had things set up to allow images less than 75kb to be hotlinked, and
anything larger was replaced with a small "no hotlinks" image which at
least gave people an opportunity to see where the source site was
without reading the page source.
The problem though with not allowing images to be hotlinked, or at least
the potential problem, is that then users (and sites like pinterest) are
likely to make their own copies of the images, which is copyright
infringement where hotlinking isn't. So from one point of view they
could argue that you are /requiring/ copyright infringement although
that certainly should be thrown out of court.
There was recently some flap about pinterest making copies rather than
links, I'm not sure whether they've cleaned up their act (started using
links) or not.
It isn't an entirely simple question, though the decision can be pretty
simple.
Re: Hotlinking
There is nothing requiring them to use images from my site. If they
want an image, then they can:
1. Find an image that is public domain
2. Purchase an image
3. Take their own picture
And it can be argued that hotlinking without my permission is stealing
bandwidth that I'm paying for. It's a cheap way for them to keep their
bandwidth usage down.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Hotlinking
Agreed, the bandwidth issue is important if you're paying for it, and I
think that most are. In my case I figured I could afford a little
advertising for what hotlinking a 75kb image was likely to cost.
It's possible by using something like GD to dynamically overlay a
hotlinked image with a logo prior to sending it out, and creating a
cache of "pre-logo-ed" images to maximize performance.
I don't know of any way though to embed a link within an image so that a
hotlinked image becomes in effect an ad for your site that the end user
can click on when viewing the hotlinked image. Do you know how that can
be done, Jerry? It might be pretty slick to let the hotlinkers supply
Re: Hotlinking
If there was good support for <img> elements that use SVG, you could
have your server construct an SVG resource on the fly for hot-linked
images. This SVG would contain a single image element, the whole of
which could be made a link back your site. You could, of course, also
add some text and link from that if you prefer. This idea is not tested
and might even fail on *all* browsers!
Since you'd only send the SVG to hot-linkers, you might tolerate the
poor browser support. But since the idea was to turn hot links into
free advertising, even that might be too much of a problem.
--
Ben.
Re: Hotlinking
SVG is getting better supported, which is good. However, then you have
to get the other host to hotlink to your SVG image. This might work in
a forum, for instance. But not many of the sites which just use images
will do so.
OTOH, it would also keep hotlinking down.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Hotlinking
Doesn't make any difference if the image is a real image or a
server-side script. Either way it has to deliver an image. And it
isn't hard for the hotlinker to determine what kind of image it is.
A server-side script is one way to keep hotlinking down, no matter what
the image is. There are other ways also - for instance, if it's just
one or two sites, a redirect in .htaccess does great.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Hotlinking
Me neither. As I've said before, I've put in place an .htaccess
redirection system to show a Copyright Violation warning image.
IANAL, but I would expect that hotlinking is a copyright infringement.
A hotlink reproduces someone else's content on a site without
permission. Copying the image reproduces someone else's content on a
site without permission. Legally speaking, I would expect that the
mechanism of reproduction would be irrelevant. Just the fact of the
reproduction without consent is surely enough to make it a copyright
infringement?
--
=========================================================
Please always reply to ng as the email in this post's
header does not exist. Or use a contact address at:
http://www.macfh.co.uk/JavaJive/JavaJive.html
http://www.macfh.co.uk/Macfarlane/Macfarlane.html
Re: Hotlinking
A link is not making a copy the image, a link is just an address. The
browser is analogous to a telescope, it lets you look at what is at the
address. If you supplied someone with an address where they could look
at the Mona Lisa and you were sued for copying the Mona Lisa because
you'd told someone where it was, that ought to be laughed out of court.
I'm pretty sure it's been tested in court. But the whole area of
intellectual property law seems to be a pretty big mess to this non-lawyer.
Re: Hotlinking
typed:
It has been tested in court, and it's infringment to hotlink to an image
(or frame a web page) without permission.
The reason it's infringement is because incorporating the image (or framed
page) into a different website is creating a derivative work, even if the
image or page itself still resides on the original server. And it's the
derivative work which infringes, not the linked image itself.
It's not infringement (and has been held by the courts not to be
infringement) to link to an image or page from one site to another, so that
by following the link you end up on the destination site. That's because
you're not incorporating any content from that site directly into your own.
So these are all infringements, if done without permission:
<img src="http://www.example.com/image.jpg">
<iframe src="http://www.example.com/page.html"></iframe>
<script src="http://www.example.com/script.js">
But these are not:
<a href="http://www.example.com/image.jpg">Image</a>
<a href="http://www.example.com/page.html">Page</a>
Intellectual property law is incredibly complex and often
counter-intuitive. It is completely impossible (and I really do mean
impossible, not just difficult) to determine whether an action infringes
intellectual property rights other than by examining the law itself (both
statute law and case law). In particular, copyright law uses its own
definition of words like "copy", which are not necessarily the same as
those which would be used in everyday language.
Mark
--
Blog: http://mark.goodge.co.uk
Stuff: http://www.good-stuff.co.uk
Re: Hotlinking
Okay, I can see how hotlinking to include the work in your page for your
sole benefit is creating a derived work.
But what about this,
<a href="http://www.example.com/page.html">
</a>
Sometimes I come to the temporary(?) conclusion that the entire purpose
of the law is to get in its own way and prevent anything from happening
except the enrichment of lawyers.
Here's a potentially revenue-generating idea for those who might be
interested in that making-money thing: a site to be the intermediary
between people who want to use various images and those who own the
copyright, something to make running around and getting permission a
little more convenient for everybody involved.
Re: Hotlinking
typed:
It's still infringement. The question of who benefits from it is irrelevent
to that particular question. Where benefit would come into it is when a
court is considering what damages to award against the infringer.
There are plenty of sites which do just that :-)
Mark
--
Blog: http://mark.goodge.co.uk
Stuff: http://www.good-stuff.co.uk
Re: Hotlinking
You're still using it without the owner's permission - it's still a
copyright violation. But if it's so innocent, you should be able to
easily get that permission, shouldn't you?
The purpose is to protect the work of the creator. Otherwise, for
instance, someone could make copies of a book/picture/photo/whatever
without paying the creator of the work.
There are many sites like that, where you can purchase pictures for your
own use. For those who don't care about being paid for their work,
there is the concept of "public domain" - and sites which have those, also.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Site Timeline
- » Cheapest Websites: Only for 100USD: Fully designed and Fully registered
- — Next thread in » Webmaster Forum
-

- » Boo!
- — Previous thread in » Webmaster Forum
-

- » Accents Showing up as Question Marks
- — Newest thread in » Webmaster Forum
-

- » Read info from webcam video
- — The site's Newest Thread. Posted in » PHP Scripting Forum
-

Subject






