lazarus/components/jpeg
mattias 5673f4846e fixed note about jpeg bug
git-svn-id: trunk@6803 -
2005-02-18 16:59:39 +00:00
..
examples fixed IsFileExtensionSupported 2004-03-01 18:02:00 +00:00
jpegforlazarus.lpk added package JPEGForLazarus 2004-02-20 14:44:40 +00:00
jpegforlazarus.pas fixed compilation for current FPC 1.9.5 2004-11-15 19:59:32 +00:00
lazjpeg.pas added jpeg example 2004-02-29 22:51:54 +00:00
readme.txt fixed note about jpeg bug 2005-02-18 16:59:39 +00:00

The lazarus TJPEGImage is in lazjpeg.pas

It uses the pasjpeg and fpimage libs provided by FreePascal. See there for in
more detailed jpeg handling.


JPEG (pronounced "jay-peg") is a standardized familly of algorithms for
compression of continous tone still images. Most JPEG processes are lossy,
the output image is not exactly identical to the input image. However, on
typical photographic images, very good compression levels can be obtained
with no visible change, and remarkably high compression levels are possible
if you can tolerate a low-quality image. The Independent JPEG Group (IJG) has
created a free, portable C library for JPEG compression and decompression of
JPEG images which has been ported to FreePascal.