Slashdot Mirror


Forgent Squeezing Money Out Of JPEG, Other Patents

deman1985 writes "Forbes reports that Forgent Networks, Inc., developer of scheduling software and holder of a number of technology patents, has settled with both Adobe and Sony for JPEG patent infringement and is going after numerous others to collect their fair share of royalties. The company also plans to go after PVR companies, including TiVo Inc, and MP3 player makers for other various patents they claim to hold. Sounds like more fun in the courts for everyone!" We previously reported on Forgent's JPEG patent shenanigans back in April.

88 of 305 comments (clear)

  1. LZW check, JPEG, erm... by trisweb · · Score: 4, Funny

    Just when we thought it was safe to put colored pixels on the internet again...

    --
    "!"
    1. Re:LZW check, JPEG, erm... by danamania · · Score: 5, Informative

      PNG is good for its own purposes, but it's no .jpg replacement. JPG = lossy and phenomenal compression, where PNG = nonlossy and kind-of-average compression.

      Take a high resolution screenshot with any complexity and save it as a PNG, and you might be lucky to get it in under 600KB, where a .jpg could get the same point across in under 100KB.

      PNG is a good replacement for .gif, but not for .jpg, yet.

    2. Re:LZW check, JPEG, erm... by tpgp · · Score: 4, Interesting

      Take a high resolution screenshot with any complexity

      Sure - JPG is better for most photos - but sharp edges, text (including high resolution screenshots of text) and the like look much better under png (bit for bit).

      Slightly offtopic, but noone seems to have mentioned Unisys yet - soon we may be seeing on GNU a page similar to this one: Why There Are No GIF files on GNU Web Pages

      Soon we may need a burn all jpegs day ;-)

      --
      My pics.
    3. Re:LZW check, JPEG, erm... by hankwang · · Score: 5, Informative
      Take a high resolution screenshot with any complexity and save it as a PNG, and you might be lucky to get it in under 600KB, where a .jpg could get the same point across in under 100KB.

      I tried it, 1536x1152 PNG, JPG (q=75%), JPG (q=95%).

      $ls -l
      -rw-r--r-- 1 hankwang hankwang 99438 Aug 12 11:49 ss.png
      -rw-rw-r-- 1 hankwang hankwang 236158 Aug 12 11:50 ss75.jpg
      -rw-rw-r-- 1 hankwang hankwang 404179 Aug 12 11:50 ss95.jpg
      Apart from the bigger filesize, JPG shows ugly artifacting. Note: I don't use too many antialiased fonts, and no fancy backgrounds and skins. If most of your desktop is covered by a photographic JPG image in the first place, you will find different results, of course. :)
    4. Re:LZW check, JPEG, erm... by nmg196 · · Score: 4, Informative

      > Take a high resolution screenshot with any complexity and save
      > it as a PNG, and you might be lucky to get it in under 600KB,
      > where a .jpg could get the same point across in under 100KB.

      A screenshot is a very bad example. It's almost NEVER better to save screenshot using a lossy compression algorithm such as JPEG. Screenshots are always better as GIF/PNG.

      JPEG is designed for compressing PHOTOGRAPHS and nothing else. It severely messes up screenshots and text unless set to extremely high quality. But if you set it to extremely high quality, the file size is usually much bigger than a PNG would be anyway.

      I'm amazed at how many authors of programming articles still don't know basic web fundamentals such as how to save a screenshot.

      To summarise:
      Save screenshots/diagrams/charts (large areas of flat colour/text) as PNG/GIF
      Save photographs as JPEG

    5. Re:LZW check, JPEG, erm... by ratamacue · · Score: 5, Informative
      PNG is a good replacement for .gif, but not for .jpg, yet.

      It never will be and never was intended to be, for exactly the reason you stated above: PNG is lossless, while JPEG is lossy. These are two different types of tool, which serve two different purposes. PNG will never achieve the compression rates of JPEG. Just use the right tool for the job.

      Would flac ever replace or eliminate the need for mp3 and ogg? No, for the same reason. flac, being lossless, serves an entirely different purpose than mp3 and ogg.

      (Some time in the future, I would imagine that disk space will become so cheap and abundant that lossy compression is unnecessary, but in that case I would say that cheap disks -- not lossless compression -- have eliminated the need for lossy compression.)

    6. Re:LZW check, JPEG, erm... by jandrese · · Score: 4, Insightful

      It really depends what you are taking a screenshot of. A game screen (probably the most common screenshot type in existance) is going to be horrible with PNG unless you're taking screenshots of Pong. Even desktops are bad unless you unset that nifty photographic background and or pictures on a webbrowser etc...

      The point is, once the complexity of the image goes above "very simple" JPEG is going to give you a smaller file nearly every time. There are precious few images worth saving as a file that are "very simple". Worse, PNG ramps up in size very quickly as the complexity increases, which is what the original poster was talking about.

      --

      I read the internet for the articles.
    7. Re:LZW check, JPEG, erm... by Chris+Hodges · · Score: 2, Insightful
      It's not complexity as such that's the issue with JPEGs - it's sharpness or edge effects. A screenshot of multiple /. IE windows is definately better as a .png (saved using paint shop pro 5) - to get a .jpeg down to the same 110KB puts all the text on a nasty fuzzy grey background. I don't have a photo on this machine that isn't already a .jpeg or converted from one, so I can't test with photos.

      Jpegs are fine for publishing photos, and there's a good reason while digital cameras use them but (of course) they shouldn't be used while editing if you want to save incrementally - the file size gets samller each time, as does the amount of information in the file.

      Chris

    8. Re:LZW check, JPEG, erm... by hankwang · · Score: 3, Informative
      You probably used 8-bit PNG.

      I actually used 24-bit PNG, but as I already mentioned: I had no anti-aliased fonts and apart from a few small icons no continuous-tone images. A window with bitmap fonts has just white and black pixels (easy to compress in PNG, hard for JPG); a window with antialiased fonts has all possible shades of grey (hard for PNG, easier for JPG). If I take a screenshot of Mozilla with its antialiased fonts and the slashdot home page, it looks like this:

      $file ssb.png
      ssb.png: PNG image data, 939 x 837, 8-bit/color RGBA, non-interlaced
      $ls -l ssb*
      -rw-r--r-- 1 hankwang hankwang 219932 Aug 12 14:40 ssb.png
      -rw-rw-r-- 1 hankwang hankwang 135671 Aug 12 14:41 ssb65.jpg
      -rw-rw-r-- 1 hankwang hankwang 280258 Aug 12 14:41 ssb95.jpg
      That is, PNG takes 0.27 bytes/pixel, whereas my original post (few colors) was 0.056 bytes/pixel.

      Weird, there is little correlation between how much thought and time I put in a reply and how it is moderated.

    9. Re:LZW check, JPEG, erm... by Not+The+Real+Me · · Score: 2

      Taking screen caps of your desktop does not reflect the color spectrum as it exists in nature.

      Here's a better idea for you (if you really want to do a true check of image quality vs. compression vs. size): get a 3+ megapixel digital camera, set it to RAW mode (many are in TIFF format). Take some snapshots outside where there is a large variety of objects and colors. Do the conversions to PNG and JPEG. Then report your findings.

      *Note: If you don't have a digital camera that can shoot 3 megapixels or higher go to candidboard , and borrow some of their content for testing purposes.

  2. Pay to save? by Turn-X+Alphonse · · Score: 2, Interesting

    We're already seeing Pay to play games (MMORPGs) why do I get the feeling some company is going to get sick of patent wars like this and make a new image standard, get everyone onto it then slap on a 1p (2c) charge on each file saved just to screw over people for a few weeks untill the web-standard changes.

    --
    I like muppets.
    1. Re:Pay to save? by hdd · · Score: 2, Insightful

      i simply won't happen, for many if it ain't broken don't fix it. Perhaps it's possible to implement new standards into web browser quickly but what about other equipments? Digital camera, Photo develping station, and even high end tv that does jpg slideshow, not all can be fixed with a firmware update, if i am a ceo of sony, i too would rather pay a small fee to stay the way it is. Big company like sony won't take the risk and who cares what small company choose to do.

      --
      This Sig is removed due to factual inaccuracy
  3. A decision has been made... by laserbeak · · Score: 5, Funny

    They are putting a 1 cent per pixel toll on all JPEG images. All funds are directed towards global domination.

    1. Re:A decision has been made... by DaneelGiskard · · Score: 3, Funny

      Vector-based JPEG format anyone? ;-)

    2. Re:A decision has been made... by Jugalator · · Score: 4, Funny

      They are putting a 1 cent per pixel toll on all JPEG images.

      Ahh, so this is how you make a geek bankrupt from having too many girlfriends!

      Damn, it was a great side effect from avoiding real life girlfriends while it lasted.

      --
      Beware: In C++, your friends can see your privates!
  4. Those Who Do Not Know History Are Doomed by Pan+T.+Hose · · Score: 5, Insightful

    ...to Repeat It. We all remember the problems with GIF just few years ago. We solved them changing every single image on the Internet to JPEG. We all have to admit that it was foolish. We're weak on logic, that's the trouble with us. We're like the guy in the story who was caught in a sudden shower and who ran to a grove of trees and got under one. He wasn't worried, you see, because he figured when one tree got wet through, he would just get under another one.

    --
    Sincerely,
    Pan Tarhei Hosé, PhD.
    "Homo sum et cogito ergo odi profanum vulgus et libido."
    1. Re:Those Who Do Not Know History Are Doomed by manabadman · · Score: 3, Informative

      Actually many of the GIFs were actually replaced with PNGs

      GIFs and PNGs support transparency (something JPEGs can't do)

      In any case many of had followed history and not only changed our GIFs, but also our JPEGs to PNG. PNG is a powerful open standard for image compression that is supported by our internet overlords.

    2. Re:Those Who Do Not Know History Are Doomed by fuzzix · · Score: 3, Informative
      In any case many of had followed history and not only changed our GIFs, but also our JPEGs to PNG

      This cannot work for the simple reason that JPEG is designed specifically for lossy compression of photographs and other complex images. Think of it as mp3 type compression - discarding data with quality decreasing proportional to size. A great tool for the dialup age.

      PNG compression is entirely unsuited to this purpose - the level of compression for these types of images is terrible. Simple diagrammatical type images compress very well in PNG. Think of it as a zip type compression. Repeated elements of the image, such as whitespace which JPEG doesn't handle very well, are well suited to PNG. Ever zipped a log file? Plenty of repeated elements, great compression.

      Converting GIF to PNG? Fine, you'll likely end up with smaller files as a bonus.
    3. Re:Those Who Do Not Know History Are Doomed by Lord+Kano · · Score: 3, Funny

      Do you have any idea how much pr0n I have in jpeg?

      Excluding the files that I have not checked or catagorized and stored in my repository, I have 103533 jpeg files (7704.57 MB) on my hard drive at the moment.

      That's a lot of converting.

      LK

      --
      "Hi. This is my friend, Jack Shit, and you don't know him." - Lord Kano
    4. Re:Those Who Do Not Know History Are Doomed by Anonymous Coward · · Score: 2, Funny

      You must have one very strong arm.

    5. Re:Those Who Do Not Know History Are Doomed by tehcyder · · Score: 2, Funny
      Less than 8GB of pr0n?

      You're just not taking it seriously.

      --
      To have a right to do a thing is not at all the same as to be right in doing it
  5. Notable quotes from the article by Beryllium+Sphere(tm) · · Score: 3, Interesting
    Under a fee agreement, Jenkens receives 50 percent of the revenue from licensing the patent, plus some expenses. The law firm's take so far is an estimated $50 million.
    Implying that Forgent has pulled $100 million out of the licensees. Also note that 50% is higher than usual for contingency fees, almost as if the law firm had been uncertain of the outcome.
    Forgent views the JPEG data-compression standard as possibly applying to MP3 players, according to documents filed in a Dallas County state district court lawsuit.
  6. Re:The company name says it all... by cliffy2000 · · Score: 4, Funny

    Should I not trust SourceForge then? That's kinda antithetical to typical /. ideology, as far as I'm concerned.

  7. The patent game, and how big companies lose by danamania · · Score: 5, Interesting

    This has me thinking about the patent game large companies play. Take IBM, Apple, Microsoft - all with gigantic patent portfolios, and products that use many of them (and probably many of those of the other companies too). When IBM infringes on an Apple patent, they get together, cross license patents under certain conditions, and go on their merry way.

    This is all fine as a defense against a company that actually has a product. But take something like these smaller companies, who only own a patent portfolio, or perhaps one big patent altogether, and no products. They find that Adobe infringes on their patent and... Adobe have no recourse. No cross licensing to be done as the smaller company has no product. The smaller company may even be privately owned, so there's no chance of a simple cheap buyout.

    While we're all looking at MS, Apple, IBM, Adobe etc and going "tsk! omg!" as they acquire yet another silly patent, they're not necessarily the ones who're going to be a pain in the butt about it, it's the smaller rogues like Forgent, or Acacia etc.

    1. Re:The patent game, and how big companies lose by Halo1 · · Score: 4, Insightful

      The big ones are not much better. If you are a small company with a product, IBM, Apple, Microsoft etc will just as happily use their patents against you if you happen to annoy them enough (or if they think they can extract enough pocket change from you). And the only reason that we have this silly system of software patents that allows this kind of racketeering, is exactly because the big companies pushed the patent offices and the courts to accept these kinds of patents.

      They're not the ones to pity, as it's mainly their fault we're stuck with the system as it is.

      --
      Donate free food here
    2. Re:The patent game, and how big companies lose by dnoyeb · · Score: 2, Insightful

      Big companies are held at bay by their competitions portfolios. If you are in a big company, especially Japanese, you are probably being asked to produce x patents per year. So what if they are not entirely relevant. So long as they are arguable and can tie a company up in court if they ever try to sue you.

      So IBM and Apple don't get together when they infringe. Because they always infringe each other. They get together when one gets pissed off for some reason. Or somebody hired new lawyers that didn't know the game...

    3. Re:The patent game, and how big companies lose by _w00d_ · · Score: 2, Interesting

      The only thing we can hope for at this point is that a bunch of the patent holding companies get sue-happy and the whole patent system implodes.

      How does this work in other parts of the world without a patent system? Is there such a place and if so, does the absense of pattents really stifle innovation?

    4. Re:The patent game, and how big companies lose by Halo1 · · Score: 3, Interesting
      The only thing we can hope for at this point is that a bunch of the patent holding companies get sue-happy and the whole patent system implodes.
      I think it's better to hope that we here in Europe will not introduce software patents.
      How does this work in other parts of the world without a patent system? Is there such a place and if so, does the absense of pattents really stifle innovation?
      I don't know whether there are places without a patent system. I know that somewhere during the first half of the 20th century, the Netherlands did not have a patent system and that thanks to this Philips could become as big as it is today. Additionally, many of the current large IT companies such as IBM, Apple and Microsoft became big without any software patents.
      --
      Donate free food here
  8. PNG is not a solution by barcodez · · Score: 2, Interesting

    Last time I read up on this PNG is not suitable for photo realistic images. This is what JPEG does well - does anyone know of a good alternative?

    --

    ----
    1. Re:PNG is not a solution by Jugalator · · Score: 5, Informative

      I can think of two successors to JPEG...

      JPEG 2000

      JPEG 2000 is "the" successor to JPEG (designed by the same team), and was noticeably better than JPEG when I checked out quality vs size, but it's patent encumbered. It is however intended to be royalty and license-fee free.

      Elysium Ltd has developed a freeware Netscape plugin to make IE, Opera and Netscape browsers able to view JPEG 2000 pictures. This plugin is for Windows, and I don't really know if there are others for other platforms.

      DjVu

      DjVu was designed for the web to replace common formats like JPEG, GIF and TIFF. Although designed primarly for compressing text, it's very efficient at regular photos as well, and should compress similarly as JPEG 2000 (about half the size of JPEG with similar quality).

      DjVuLibre is a GPL licensed open source implementation that includes plugins, viewers, and encoders for this format.

      --
      Beware: In C++, your friends can see your privates!
    2. Re:PNG is not a solution by Jugalator · · Score: 4, Informative

      Sorry, I linked to a DjVu community page and not the official one.
      DjVu is a trademark of LizardTech Inc (which also provides browser plugins for MacOS etc etc).

      --
      Beware: In C++, your friends can see your privates!
  9. Honestly. by johnnliu · · Score: 3, Insightful

    I'm so sick of reading companies going after other companies on stupid patents.

    I mean, I start my day on /. and the first news is someone getting sued over JPEG. What a way to ruin my day.

    A business of just hoarding ideas and extracting patents, while not producing any real products is really not a business. My opinion (and a few million others) is just shut them down, dammit.

    But, what will my rant here do? It won't help anyone. :-(

    Anyway, I just end up depressed.

    While not a real solution to the people getting sued, I at least have a temporary solution for myself: untick YRO from my preferences.

    Sorry to the people affected by the law suites, you have my thoughts.

    1. Re:Honestly. by templest · · Score: 2, Funny
      I mean, I start my day on /. and the first news is someone getting sued over JPEG. What a way to ruin my day.
      You mean you're waking up right now? This is the last thing I'm reading before going to sleep!

      For the record, it's 7:14AM right now
      --
      I'm a signature virus. Please copy me to your signature so I can replicate.
    2. Re:Honestly. by OwnedByTwoCats · · Score: 2, Informative

      (1) The mouse was invented by Doublas Englebart at the Stanford Research Institute (now SRI), not PARC.

      (2) Ideas are cheap. Proving that they work is hard. Edison's 1% Inspiration, 99% Perspiration. Rewarding those who dream up ideas without actually ever putting them into practice is rewarding the wrong people. In this case, the folks who dreamed up the patents seem to have done nothing help develop the JPEG standard (Lemuelson is another example of an "inventor" not inventing anything, and cashing in on the efforts of others), or did so under false pretenses (see RamBus).

      Also remember, the point of Patents and Copyrights isn't to reward inventors and authors, it is to benefit society. Letting the creatively litigous enrich themselves while dragging down society is an abuse.

    3. Re:Honestly. by 3terrabyte · · Score: 2, Funny
      Bahahaha!!!

      I love it. The irony is priceless. You do know you are linking to your photography site FULL of jpegs!! Better get out the checkbook!

      --

      Why are there only 19 people folding@home for slashdot?

  10. Two potential solutions... by Black+Parrot · · Score: 5, Funny
    • Start calling this "the porn patent" to see if they'll back off to avoid the bad PR.
    • Buy a bigger disk drive so you can convert your pron collection to PNG.
    --
    Sheesh, evil *and* a jerk. -- Jade
    1. Re:Two potential solutions... by kfg · · Score: 3, Informative

      Pecunia non olet --Vespasian Circa 70 A.D.

      KFG

    2. Re:Two potential solutions... by tommy_teardrop · · Score: 4, Interesting

      For those who can't use java translators, like me - from Latin Proverbs and locutions:

      Pecunia non olet. (Vespasianus)

      Money has no smell. Money doesn't stink.

      With the aim of replenishing depleted state funds, Vespasianus introduced, among other things, a new tax on public lavatories. When objected to by his son Titus, Vespasianus held a coin collected under that tax law to his son's nose and asked him if it smelled.

      --
      -- IANAL, BIPOOTV
  11. Re:Great for PNG by trisweb · · Score: 3, Interesting

    As someone else already noted, PNG and JPEG cannot compare in their use or compression. JPEG's advantage has always been its ability to compress photographic (non computer generated, generally) images down to fractions of their bitmapped size. PNG is a lot like GIF in its design (to my knowledge and experience). It compresses certain things well, but JPEG is still the master of photographs, which is why this could affect the web slightly. There isn't yet a widespread open JPEG-like standard -- maybe there needs to be. Until then, I'm going to continue to use JPEGs because, well, I think this will all blow over just like every other ludicrous software patent we've seen.

    --
    "!"
  12. Vergy good! by DaneelGiskard · · Score: 2, Funny

    That gives motivation to move on to JPEG-2000 and other superiour formats. Of course, those are patented as well already, so let's just get out a pencil and a piece of paper and forget the whole Internet thing...

    Of course, someone will point me to pencil and paper patents now... ;-)

    1. Re:Vergy good! by Tranzig · · Score: 2, Interesting
      Actually JPEG 2000 might not be that good idea.
      "The up and coming JPEG 2000 standard has been prepared along these lines, and agreement reached with over 20 large organisations holding many patents in this area to allow use of their intellectual property in connection with the standard without payment of license fees or royalties. It is of course still possible that other organisations or individuals may claim intellectual property rights that affect implementation of the standard, and any implementors are urged to carry out their own searches and investigations in this area."

      Sadly both wavelet and fractal compression appears to be a minefiled, so a solution for free lossy image compression is yet to come.
      On the other hand, I believe there are some nearly lossless algorithms not encumbered by patents. They might be the solution for the situation, as they provide much better compression than PNG while making only non-perceptible (really!) changes to the image.
  13. Screwed by submarine patents again by hcdejong · · Score: 5, Informative

    ...even though the Joint Photographic Experts Group tried to create a format that wasn't encumbered by patents. Where will the madness end?

  14. I am all for an intelligent change in patent law. by Photo_Nut · · Score: 5, Interesting

    If I could change patent law, I would do the following: Demand proof of damages.

    Patents are designed to defend against inventions. If I patent something useful, but don't actually have an implementation, I'm using the system to stifle others, and not really giving anything back.

    In order for something to be an invention, it needs to have an implementable form. Sure, I could patent something that I can't make, but if someone else comes along and figures it out independent of me, then I really shouldn't be able to sue them for having the same idea that I did, unless I actually built it.

    So IF forgent claims to have a patent, their patent needs to have an implementation which would serve as a test of requiring the patent. Otherwise, it's just an idea without an implementation.

    I could try and patent a perpetual motion machine, and might succeed, but if someone else succeeds in building one, they will have figured out the difficult detail that I didn't: how to break the laws of thermodynamics.

    And in a completely unrelated note, XP SP2 just finished installing. Only took about 5 minutes. I guess it pre-downloaded today.

  15. The numbers don't seem to add up by duvel · · Score: 2, Interesting
    The numbers don't seem to add up. The article states:

    the past two years, the company has made about 90 percent of its revenue from patent negotiations, and its software has yet to get much of a foothold.

    In its fiscal 2003, for instance, software sales were just 8 percent of the company's $53.9 million in sales.
    These quotes say that $53.9 million in sales (which is consistent with what I find on Yahoo Financialcomes for 90% from patent negatiations, and 8% from software sales. Nowhere on the net can I find anything about where that other 2% comes from (they don't seem to do any consulting for instance).

    Then there's these quotes:

    Already, Forgent has reaped nearly $50 million by claiming that one of its patents covers JPEG, the popular standard for digital images.

    Then there's Jenkens & Gilchrist, the Dallas-based law firm handling enforcement of the JPEG patent. Under a fee agreement, Jenkens receives 50 percent of the revenue from licensing the patent, plus some expenses. The law firm's take so far is an estimated $50 million.
    The first one says Forgent made $50 million on jpeg patents so far. The last claims the lawyers get half, and that is also $50 million.

    Not sure what I should think of a company that doesn't succeed in having it's numbers correctly communicated. I do know however that $50 million is peanuts on a global scale. Looking at Forgent' share price, the stock markets seem to agree with me.

    --

    I have a photographic memory for numbers. I know almost a hundred of them.

  16. Weak position from Jpeg.org by ishmalius · · Score: 2, Interesting
    The standards group itself cannot state that the use of the specification will remain free from litigation, or lacks the courage to do so. How is the world to regard such a specification as anything other than critically suspect?.

    Check the site yourself, and try to find any pledge from them that the specifications for JPEG or JPEG2000 are safe to use.

    1. Re:Weak position from Jpeg.org by kfg · · Score: 5, Insightful

      Check the site [jpeg.org] yourself, and try to find any pledge from them that the specifications for JPEG or JPEG2000 are safe to use.

      In a day and age when it isn't safe to make a peanut butter and jelly sandwich, or put out some toys for kids to play with while their parents do business with you, how do you expect them to make such a pledge?

      KFG

    2. Re:Weak position from Jpeg.org by Ibag · · Score: 2, Insightful

      Why should the standards group state that use of the specification will remain free from litigation?

      Stating it doesn't mean that it is the case. They might have agreements from everybody involved in the making of the standard that they are granting a royalty free useage of all patents for the use of the standard (though I don't know this to be the case), but what can they do if someone decides to sue?

      As far as I'm aware, if I have a patent on flattening meat with a pencil and a sheet of paper, I could go to Adobe and say that their use of JPEG related things infringes on my patent. The fact that it doesn't is (somewhat) irrelevent. What is relevent is that the JPEG group can't gaurentee that I won't file a frivilous lawsuit. What would happen if I bought a relevent patent from some other company (perhaps that was going under) and now I do have a relevent patent to leverage? What about submerine patents? What about patents which can be argued by some to be relevent and by others not to be? Even if all the companies involved in the original standard agreed to freely liscense their patents or even put them in the public domain, there are still several ways things could turn sour. And now you want the standards body to say that use of the specification will remain free from litigation after litigation has begun? Do empty, unenforcible, obviously hollow and false promises comfort you? Did you buy into SCOs argument of "Look, several linux companies won't indemnify their users, so our side must be right" argument?

      A standards body can't speak for the actions of people completely uninvolved with it. I don't likee empty promises, and I don't like that making them matters. This all reminds me of a joke: Two politicians are talking to eachother and on of them says "Hey, you're lying!" to which the other replied "Yes, but hear me out."

      On another note, given the nature of the site, it woludln't really make sense for the statement you're looking for to be there. Not even if they had the power to make it.

    3. Re:Weak position from Jpeg.org by BenjyD · · Score: 2, Funny

      Bloody hell, I thought you were kidding until I did a search on the patent office website:

      United States Patent 6,004,596

      1. A sealed crustless sandwich, comprising:

      a first bread layer having a first perimeter surface coplanar to a contact surface;

      at least one filling of an edible food juxtaposed to said contact surface;

      a second bread layer juxtaposed to said at least one filling opposite of said first bread layer, wherein said second bread layer includes a second perimeter surface similar to said first perimeter surface;

      a crimped edge directly between said first perimeter surface and said second perimeter surface for sealing said at least one filling between said first bread layer and said second bread layer;

      wherein a crust portion of said first bread layer and said second bread layer has been removed.

  17. Re:I am all for an intelligent change in patent la by mccalli · · Score: 4, Insightful
    Patents are designed to defend against inventions. If I patent something useful, but don't actually have an implementation, I'm using the system to stifle others, and not really giving anything back....In order for something to be an invention, it needs to have an implementable form. Sure, I could patent something that I can't make, but if someone else comes along and figures it out independent of me, then I really shouldn't be able to sue them for having the same idea that I did, unless I actually built it.

    I would like to agree, and certainly agree with the spriti of what you're saying, but there is a practical problem too.

    Suppose I succesfully work out all the problems and design the perfect cold fusion-based reactor. There is no possible way for me to implement it - I have to go to an energy company to get a power plant built (at the very least, a bank who will loan me the utter fortune I require to construct it).

    At this point, under the changes you suggest the device is not patentable since it has not yet been implemented. What is to stop an unscrupulous energy company, or bank, or indeed anyone who gets wind of it from taking my design and implementing it themselves with no further input from me? Worse still, once they have the implementation it is they who will profit from obtaining a patent, not me.

    So the "no patent without implementation" idea is flawed. It's a shame, because it sounds like a good way out. But it wouldn't work as described.

    Incidently, I refused to have my name listed as the co-inventer on a patent my company wanted to file because I considered it so trivial as to be silly. I don't want my name associated with patent abuse, and if more people took that approach this problem simply wouldn't occur. That's a pipe-dream though.

    Cheers,
    Ian

  18. Re:PNG is fine... by Capt'n+Hector · · Score: 2, Funny
    Well, I'm always fond of the .gif file format for large photos (you can animate those photos too, to get movies!).

    If you really want to get cool, make a html table with each cell one pixel of the image.. your image is now one big html file!

    --
    Quid festinatio swallonis est aetherfuga inonusti?
    Africus aut Europaeus?
  19. Run length coding? Patentable? Come on! by achurch · · Score: 4, Informative

    According to the earlier /. article, the patent in question is on run-length coding, and was issued in 1987. Unless it was submarined for a really long time, there's got to be prior art all over the place. If nothing else, the Amiga's IFF ILBM image format uses RLC, and it's been around since 1985, at least.

  20. When will it expires? by cpghost · · Score: 2, Interesting

    When was that alledged patent filed? We may as well be patient and wait for it to expire, just like GIF, RSA etc...

    --
    cpghost at Cordula's Web.
  21. Re:I am all for an intelligent change in patent la by zonix · · Score: 2, Informative

    Well, you see it's a whole other and much less subtle deal in Forgent's case.

    They acquired a patent portfolio - which includes the patent with royalty-free license in question - from another company called Compression Labs which they bought back in 1997.

    Now they're relicensing the patent to cash in on it, and they're suing various digital camera manufacturers - starting with all the "big fish". They're being quite ruthless too, bragging about they're actions even.

    z
    --
    What would an EWOULDBLOCK block, if an EWOULDBLOCK could block would? -- me
  22. Welcome to a new business type by gilesjuk · · Score: 4, Insightful

    The parasite business model. Companies that buy or create patents then just sue everyone. We've seen SCO and Unisys (LZW patent), this sort of action seems to suggest a failing in their product line.

    I have no problem with companies protecting their innovative ideas to ensure their time and money invested is rewarded.

    I believe that you should only be able to defend patents and your inventions if you actually produce a product based upon them.

  23. Opensource imlementations? by varjag · · Score: 5, Interesting

    I wrote and maintain an opensource JPEG implementation, so am pondering about potential consequences. Am no big corporation of course, so not likely to be targeted by the extorters, but still.. What would you recommend, given that:

    1. I am not a U.S. citizen;
    2. The project is hosted on a service under U.S. jurisdiction (SourceForge).

    Would it suffice to migrate the project to a non-US service?

    --
    Lisp is the Tengwar of programming languages.
    1. Re:Opensource imlementations? by varjag · · Score: 2, Interesting

      It sounds like you may mostly be trying to evade capture by Americans.

      Huh? Capture? I just wrote the damn software, back in 1998, when no one ever heard about Forgent. It's not like I planted a bomb in WTC, you know..

      If, on the other hand, you are looking for some kind of moral or ethical guidance, ask yourself what the American legal system has done for your own people over time.

      Well, everything is linked in this world, but implying that I should be somehow grateful to American legal system sounds a bit far-stretched. Personally, I think McDonalds has done far more for my people over time.

      --
      Lisp is the Tengwar of programming languages.
    2. Re:Opensource imlementations? by Ender+Ryan · · Score: 5, Insightful
      As a U.S. citizen myself, who is a software programmer, I worry nearly daily about the future of my career. Every week, I point out to everyone I know at least one ridiculous patent that is causing problems for businesses(usually small businesses) in this country. Most people don't care. I occasionally write my congress-critters, but that's relatively pointless too. Our politicians are 99% in the pocket of our corporations. I really believe that that isn't an exaggeration, but I could be somewhat off-base. In any case, we have a high rate of political corruption. That our politicians are working mostly for the corporations makes this a somewhat fascist country. It's not truly fascist yet, as there are many powers fighting each other for control, but we may get there some day.

      What's the point of this ridiculous rant? Simple. Don't let this happen wherever you live. Please. I might move there some day, just so I can continue in my chosen profession.

      As for your question... I don't think you should worry. If anyone bothers you, you can move your project somewhere else at that time. You have no obligation to care about this country's ridiculous IP laws.

      Cheers!

      --
      Sticking feathers up your butt does not make you a chicken - Tyler Durden
    3. Re:Opensource imlementations? by ConceptJunkie · · Score: 2, Interesting

      Huh? Capture? I just wrote the damn software, back in 1998, when no one ever heard about Forgent. It's not like I planted a bomb in WTC, you know..

      Don't you know? By flouting U.S. patent law, even if you are in another country, you are a now officially a terrorist.

      Seriously though, it blows my mind that patents are routinely issued for obvious things that any expert (in the case of software, anyone who's spent a few hours with a compiler) can come up with in a vacuum.

      The patent problem is on a slow boil, and it will erupt some day when some company decides to hold a significant part of the U.S. economy hostage. But of course then it will be too late. Like President Bush said about Iraq... we need to do something before the threat becomes imminent.

      The problem is, at least with me, I'm a few billion dollars short to get anyone's attention.

      --
      You are in a maze of twisty little passages, all alike.
    4. Re:Opensource imlementations? by FoboldFKY · · Score: 2
      What's the point of this ridiculous rant? Simple. Don't let this happen wherever you live. Please. I might move there some day, just so I can continue in my chosen profession.

      The only problem with this, being an Australian, is that the US' line is "if you don't conform to our laws, we'll screw you over even worse than we already do, and you can forget about any kind of military protection. Now get down on your hands and knees..." Fact is, we really have no choice in the matter.

      Oh well, time to move to New Zealand--one of the few countries that still has the guts to give the US the finger.

      --
      We're geeks... We're the sorcerers of the modern-day world. --
  24. That is not so simple by Pan+T.+Hose · · Score: 4, Funny

    Actually many of the GIFs were actually replaced with PNGs GIFs and PNGs support transparency (something JPEGs can't do) In any case many of had followed history and not only changed our GIFs, but also our JPEGs to PNG. PNG is a powerful open standard for image compression that is supported by our internet overlords.

    Changing every GIF to PNG on a site like Slashdot might have been easy even years ago when it was done, but some of us have quite a lot of important data stored in the JPEG format, which does not compress well with lossless PNG (e.g. anatomical photographs for scientific purposes). Just as an example:

    pth@ph9:28:/etc/X11$ du -sh ~/work/projects/.linuxx/.a/xxx/jpegs
    127G /home/pth/work/projects/.linuxx/.a/xxx/jpegs
    pth@ph9:28:/etc/X11$

    It is not a simple matter of:

    $ find ~ -iname '*.jpg' -exec convert {} {}.png ';'

    Well, actually it is, but it would take O(n) time (at least).

    --
    Sincerely,
    Pan Tarhei Hosé, PhD.
    "Homo sum et cogito ergo odi profanum vulgus et libido."
  25. Patent? by Luigi30 · · Score: 2, Funny

    I thought SCO patented extortion.

    --
    503 Sig Unavailable

    The Signature could not be accessed. Please try again later or contact the administrator
  26. Re:Run length coding? Patentable? Come on! by shish · · Score: 5, Funny
    I think Cave Man Og had prior art when he stopped saying "I have rock, rock, rock", and instead said "I have 3 rocks".

    But wait; this uses a computer, so it's an entirely new concept... never mind.

    --
    I mod down anyone who says "I will be modded down for this", regardless of the rest of their comment
  27. David Versus Goliath? by argent · · Score: 4, Funny

    "I believe this is just more proof that this David and Goliath story is just getting started," said Mannsbach, who said he holds close to 5 percent of Forgent's shares on behalf of clients.

    This would be some kind of "American McGee's David Vs Goliath", with a David hooked on heroin and using his sling to tie off when he shoots up... it's definitely some looking-glass version of the story, 'cos I remember the original David being the hero, not an opportunistic parasite.

  28. Not quite so sure.... by Anonymous Coward · · Score: 5, Informative

    {Stupid Joke Mode:ON}
    So, now, when's Xiph.org going to add a lossy codec for photorealistic picture in it's OGG software ?
    And then we'll start again some kind of "OGG/Twoflower" vs. "WindowsMedia/MS-JPEG-2004.NET" codec war.
    {/Stupid Joke Mode:OFF}

    Actually, I realy mean it !

    According to the foot note of this article,
    they don't have a patent for the JPEG compression standart it self,
    but for the run lenght encoding (RLE) compression which is used in one of the latest stage of JPEG compression.

    Which means two things :
    - It is not a threat to lossy compression.
    All the strenght of JPEG comes from the DCT (discret cosine transforme) and the subsequent quantization, which convert the picture into a stream of more compressible values repetitive values (and thus perfom the actual "lossy" steps).
    RLE isn't the only way for compress these values,

    One can use algorithms similar to those used in the final steps by Xiph's (!) Speex or by Monkey Audio (=Rice).

    So one can imagine that Xiph could easily create a temporary JPEG replacement until some realy better (Wavelet based ?) patent-free format is created.
    (Hence my stupid joke at the begining).

    - Second thing :
    There's probably A LOT of prior acts for this patent, as LZW was one of the most popular compression algorithme on the old personnal computers of the 80s.

    1. Re:Not quite so sure.... by molo · · Score: 2, Informative

      So one can imagine that Xiph could easily create a temporary JPEG replacement until some realy better (Wavelet based ?) patent-free format is created.

      BTW, I believe wavelet patents is one of the reasons why jpeg 2000 is not being widely adopted.

      See here: http://en.wikipedia.org/wiki/JPEG_2000#Legal_probl ems_with_the_use_of_JPEG_2000

      -molo

      --
      Using your sig line to advertise for friends is lame.
  29. Prior art according to wikipedia, yet... by deragon · · Score: 3, Interesting

    From Wikipedia: http://en.wikipedia.org/wiki/JPEG#Potential_patent _issues

    The JPEG committee investigated the patent claims in 2002 and found that they were invalidated by prior art. Nevertheless, between 2002 and 2004 Forgent was able to obtain about $90 million by licensing their patent to some 30 companies. In April 2004 Forgent sued 31 other companies to enforce further license payments. In July of the same year, a consortium of 21 large computer companies filed a countersuit, with the goal of invalidating the patent.

    I guess the prior art does not stand in court.

    --
    Remember the year 2000? They promised us flying cars. They delivered the PT Cruiser...
    1. Re:Prior art according to wikipedia, yet... by EmagGeek · · Score: 5, Informative

      "I guess the prior art does not stand in court."

      To my knowledge, it has not yet tried.

  30. Who was the idiot... by Yaa+101 · · Score: 2, Interesting

    That chose a patented tech to be nominated to be a industry standards?

    1. Re:Who was the idiot... by Halo1 · · Score: 2, Informative

      It's hard to find any kind of algorithm that does not fall under any kind of patent of some sorts. The JPEG consortium had received pledges from all patent owners that they would not assert their patents however. Then one of those companies went broke, its patents were bought by Forgent and the rest is history, as they say.

      --
      Donate free food here
  31. Re:Run length coding? Patentable? Come on! by NoMercy · · Score: 2

    The question is when was it filed, not issued.

    But I do find it insane that therers no prior art, or infact that it's not an inovative leap becase it's such a minor jump that everyone and his dog has thought of it.

    Hell I came up with the idea without much mental stressing, took me a while before I knew what it was called.

    But hey, someone else has probably got a patent on escape symbols which are used all over the shop.

  32. Just another reason that proprietary beats FOSS! by leonbrooks · · Score: 2, Funny

    If these companies had been using proprietary software, nobody would have known what technologies they were using, so they wouldn't have been sued, would they?

    <G/D/R>

    --
    Got time? Spend some of it coding or testing
  33. RLE is to JPEG as "make it a round shape" is to CD by t_allardyce · · Score: 3, Informative

    Actually Forgent doesn't own JPEG it owns (according to the last Slashdot article) run-length encoding which is used in many more things than JPEG including fax compression. To say RLE is what makes JPEG would be misleading, to sue people for it would be to sue CD manufactures because you came up with the idea of making the disk a circle shape. Now what RLE is, is basically counting the number of repeating symbols, in a line, in a data stream, and replacing that sequence with a special symbol that basically says "there are 352 X's here" or "352X" etc. That basically means Forgent is not only a pile of shit, they are 352shit. Looking at the DCT algorithm in JPEG it is a masterful weave of mathematical genius as beautiful as the scantily glad Victorias secret models it purveys to millions around the world and had Forgents team of dedicated masters spent years perfecting this and had they bled their souls and bodies daily into the project i might find it in me to see an ounce of respect and maybe they would deserve some royalties from those who would use the algorithm for solely commercial gain. but they don't and they didn't. They bought RLE and now they want to milk the world for a 'technology' even a judge could understand!

    --
    This comment does not represent the views or opinions of the user.
  34. Solution? by *Pres* · · Score: 2, Interesting
    I have no idea what I'm talking about, but if it would turn out that there's no solution to solve this problem in the courts, maybe some of the major companies using these technologies could organize a takeover of Forgent, dissolve it and put it all in the public domain?

    I'm a dreamer, but I'm not the only one. :-)

    1. Re:Solution? by AndroidCat · · Score: 2
      The problem with that is that the people who currently own the stock of Forgent would walk away rich. (It's the same problem as SCO.) Also, they'd be back a month later with another company and more junk patents bought at Crazy Ernie's Discount IP Warehouse and Police Auction.

      There's no point in paying them any Danegeld.

      --
      One line blog. I hear that they're called Twitters now.
  35. It seems like by Tairnyn · · Score: 2, Insightful

    it's becoming standard practice to quietly hold onto patents as long as possible, delighting in each new victim that violates them. Then, when the profit margin reaches critical mass, send in the legal hounds. I'm assuming the available DB of patents is so large and uses a wide range of semantics that doing an effective search with the use of each new (or old, even) technology is pretty tough.

    --
    "Don't waste your time or time will waste you" -MUSE
  36. "HP: Microsoft planned open-source patent fight" by Anonymous Coward · · Score: 2, Informative

    "Basically, Microsoft is going to use the legal system to shut down open-source software," said Gary Campbell, then vice president of strategic architecture in HP's office of the chief technology officer, in a memo to several HP executives. "Microsoft could attack open-source software for patent infringements against (computer makers), Linux distributors, and, least likely, open-source developers."
    http://zdnet.com.com/2100-1104-5276901.html

  37. Wrong by gr8_phk · · Score: 2, Insightful
    "If I patent something useful, but don't actually have an implementation, I'm using the system to stifle others, and not really giving anything back."


    Patents allow startups with no implemenation or funding or manufacturing, to show thier idea to investors so they can bring it to market. Without this capability many smaller companies couldn't get started. A large company with much capability would steal the idea an put it in volume production before the inventor could get a good prototype working. Actual product development is expensive, so without patent protection you limit new ideas to those who already have a lot of money.


    First rule for patent reform: Do NOT extend the term of protection. Nothing else is worth compromising on this one thing.


    I would favor a reduction to 10 years - if you can't get to market in that time and make a buck, you're probably scamming your investors anyway.

  38. Re:I am all for an intelligent change in patent la by gcaseye6677 · · Score: 2, Interesting

    My theory about these recent cases of a patent parasite starting out suing some big company, such as Disney, is that they approach the big company, offer them something in exchange for "licensing" their patent, just so they can say "these guys signed, so you little guys have no chance". Notice the terms of the agreement are always confidential, so for all we know the big company could have paid basically nothing for the license, and may even be collecting a fee so their name could be used in the patent campaign. But the little guys will pay right up, fearing a huge lawsuit that even a huge company couldn't seem to win.

  39. Small and medium-sized companies don't act by FlorianMueller · · Score: 4, Insightful

    I'm also against software patents but I think it's too simple an explanation to blame the large corporations only. Yes, the big organizations typically want software patents, and I see them how they push very hard for software patents in the EU where we have that ongoing legislative process.

    However, I also see the major mistake of small and medium-sized enterprises: They don't act. Large corporations understand that politics affect business, so they view political activities as part of their business. Small and medium-sized enterprises are usually run by people who believe that it's "prudent" to focus on the "core business" and not to do anything serious on the political front.

    The narrowmindedness and ignorance of most small and medium-sized enterprises makes it very easy for the large corporations to get what they want, and to defend it later.

    Look at most industry associations: They claim to speak on behalf of numerous small companies but are pretty much under the control of a few large members. An organization like the SIIA should fight against software patents every day. It should be their #1 priority because nothing is a bigger business risk to software companies than those absurd software patents. Instead, the SIIA just asks for more funds to be provided to the USPTO. Sure, with more resources, the USPTO may be able to examine patent applications more carefully. Still the real solution is to do away with patents on computer program logic, i.e. mental steps. And where are the organizations, except for some open source and civil rights organizations, that truly fight against software patents?

    Maybe, at the end of the day, many small and medium-sized enterprises just pay the price for political ignorance and inactivity. Right now, there would be an excellent chance to get software patents abolished in the EU, and that would be a signal for other regions of the world (especially if things work out well for the EU, and I'm quite sure they would because software patents stifle innovation and adversely affect economic growth).

  40. Lawyers, patents, and investors... by gillbates · · Score: 3, Interesting

    The ex-Jenkens lawyers filed a counterclaim to recover millions of dollars in past and possibly future fees they say they're entitled to as the architects of Forgent's patent-licensing strategy.

    So basically, these lawyers patented the business model of suing other companies for patent infringement and are now trying to collect royalties on Forgent collecting royalties from the JPEG patent. Follow that?

    But it gets better:

    Already, Forgent has reaped nearly $50 million...

    Jenkens receives 50 percent of the revenue from licensing the patent, plus some expenses. The law firm's take so far is an estimated $50 million.

    So, let me get this straight:

    • Forgent has paid out 50 Million in legal fees, so that:
    • Forgent could receive 50 Million in patent royalties, and
    • They now owe the lawyers half of any remaining royalties they collect...

    So basically, they've made no profit on their first $50M in revenues, their lawyers own half of all their subsequent royalties, and their ex-law firm is suing them for whatever is left.

    What can I say, but that I'm glad I don't own stock in Forgent.... They may have a patent portfolio, but they don't have a clue.

    --
    The society for a thought-free internet welcomes you.
  41. Statute of Limitations by jinxidoru · · Score: 5, Interesting

    Isn't there some sort of statute of limitations on these patent issues? If not there should be. It seems to a popular activity for patent-holders lately to wait quietly by while others infringe on their patents. They wait until the company becomes big enough, then they bounce on the offenders like a little fat kid walking through the desert who sees a piece of chocolate cake.

    That's what has bothered me from the beginning about SCO (I know it's not a patent issue here, but close enough). Why hadn't anyone said anything about Linux stealing System V code before? It's not like Linux is all that new. It appears that they just waited until someone with deep enough pockets was close enough to Linux that they could attack.

    There should be a law enacted where if you know that someone is infringing on one of your patents, you have one or two years to litigate. After that point, your rights to litigation would be revoked. Now it would be difficult to prove prior knowledge of the infringement, but it's better than our current system.

  42. Re:I am all for an intelligent change in patent la by OwnedByTwoCats · · Score: 2, Insightful

    Suppose I succesfully work out all the problems and design the perfect cold fusion-based reactor.

    My objection is that the current patent system doesn't force you to actually prove you have worked out all the problems with a cold-fusion-based reactor. All you have to do is to write down some vague ideas about how it might work. Then you go and sue the folks who actually put in the sweat to really solve the problems and make it work. So much easier getting money this way than all that hard work actually coming up with inventions that work.
  43. Expiring soon? by Waffle+Iron · · Score: 3, Informative
    From what I've been able to find out, the patent in question is 4,698,672, which was filed on Oct. 27, 1986 and granted on Oct. 6, 1987.

    Shouldn't that patent be expiring on Oct. 6, 2004? If so, this won't be an issue for very long.

  44. Tivo??? by Cramer · · Score: 2, Interesting

    Ok, this is just bull. Please point to the JPEG's on a TiVo. I'll wait...

    *ding*

    There aren't any. All the icons (the balls, the star, network logos, the "blue wiener", etc.), and loopsets (i.e. slide shows like the little tivo guy in the upper left corner) are PNG formated images. I don't think Tivo would've changed to JPEG in the last few years. Everything else is an MPEG2 or raw graphics written onto the overlay (eg. the menu borders.) Fonts are standard true-type fonts -- non-compressed as I recall. (even "easily" replacable.)

    [I don't expect anyone from Tivo, Inc. to step up to answer exactly how they do all the gfx.]

  45. Patent is Invalid by KeithIrwin · · Score: 4, Interesting

    The patent claims the process of Huffman encoding and/or run-length encoding digital signals. The CCITT Group 3 Fax machine standard used run length encoding followed by Huffman encoding to compress the digital signals before transmission. It was issues in 1980, six years before the patent.

    I don't understand why any company would capitulate when the prior art is quite as obvious as the digital fax machine. I'll wager that they've even used a fax machine in persuing their claims.

  46. fools gold by Doc+Ruby · · Score: 2, Insightful

    Anyone else notice how Sony and Adobe ruthlessly pursue people who infringe their copyrights, and spend millions on useless, counterproductive DRM, but cough up millions to these invalid patent claimjumpers?

    --

    --
    make install -not war

  47. PNG vs JPEG for screenshots by po8 · · Score: 2, Informative

    Here's the sizes for my antialiased KDE desktop with an xterm and firefox open on it.

    -rw-r--r-- 1 bart bart 278372 Aug 12 10:44 screenshot-75.jpg
    -rw-r--r-- 1 bart bart 496802 Aug 12 10:45 screenshot-95.jpg
    -rw-r--r-- 1 bart bart 258090 Aug 12 10:42 screenshot.png
    Original commenter looks right to me. Interesting.
  48. RLE isn't even valid by gillbates · · Score: 2, Insightful

    From a patent perspective, the assemblers on IBM mainframes in the 60's had an assembler directives like this:
    LABEL DC CL132'A'
    Basically, what this is: Declare Constant, Character Lenth 132, filled with 'A'. It is a Run Length Encoding, and it preceded GIF, JPEG, etc... by more than 15 years.

    Likewise, the dup directive was available in PC assemblers long before RLE was patented.

    So, anyone with the guts to fight these guys could easily invalidate their patent with prior art. The idea of run length encoding as a compression technique occurred to me when I was about 12, and even then I didn't think it particularly noteworthy.

    --
    The society for a thought-free internet welcomes you.