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.

7 of 305 comments (clear)

  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. 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?

  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: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!
  5. 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.

  6. 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.

  7. 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.)