HomeSort by relevance Sort by last modified time
    Searched full:jpeg (Results 1 - 25 of 612) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jpeg/
rdjpgcom.1 3 rdjpgcom \- display text comments from a JPEG file
16 reads the named JPEG/JFIF file, or the standard input if no file is named,
19 The JPEG standard allows "comment" (COM) blocks to occur within a JPEG file.
22 annotations, titles, index terms, etc to your JPEG files, and later retrieve
23 them as text. COM blocks do not interfere with the image stored in the JPEG
25 them as you like in one JPEG file.
31 to also display the JPEG image dimensions.
36 does not depend on the IJG JPEG library. Its source code is intended as an
37 illustration of the minimum amount of code required to parse a JPEG fil
    [all...]
ThirdPartyProject.prop 6 name=jpeg
7 keywords=jpeg
README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
cjpeg.1 3 cjpeg \- compress an image file to a JPEG file
17 named, and produces a JPEG/JFIF file on the standard output.
44 Create monochrome JPEG file from color input. Be sure to use this switch when
50 you'll get a smaller JPEG file that takes less time to process.
56 usually makes the JPEG file a little smaller, but
63 Create progressive JPEG file (see below).
79 reconstructed image: the higher the quality setting, the larger the JPEG file,
104 considered optional in the JPEG standard.
107 other JPEG programs may be unable to decode the resulting file. Use
113 switch creates a "progressive JPEG" file. In this type of JPEG file, the dat
    [all...]
wrjpgcom.1 3 wrjpgcom \- insert text comments into a JPEG file
22 reads the named JPEG/JFIF file, or the standard input if no file is named,
23 and generates a new JPEG/JFIF file on standard output. A comment block is
26 The JPEG standard allows "comment" (COM) blocks to occur within a JPEG file.
29 annotations, titles, index terms, etc to your JPEG files, and later retrieve
30 them as text. COM blocks do not interfere with the image stored in the JPEG
32 them as you like in one JPEG file.
35 adds a COM block, containing text you provide, to a JPEG file.
63 file name MUST be supplied, so that the source JPEG file comes from somewher
    [all...]
jversion.h 5 * This file is part of the Independent JPEG Group's software.
jpegtran.1 3 jpegtran \- lossless transformation of JPEG files
16 performs various useful transformations of JPEG files.
17 It can translate the coded representation from one variant of JPEG to another,
18 for example from baseline JPEG to progressive JPEG or vice versa. It can also
34 reads the named JPEG/JFIF file, or the standard input if no file is
35 named, and produces a JPEG/JFIF file on the standard output.
48 To specify the coded JPEG representation used in the output file,
57 Create progressive JPEG file.
60 Emit a JPEG restart marker every N MCU rows, or every N MCU blocks if "B" i
    [all...]
usage.doc 1 USAGE instructions for the Independent JPEG Group's JPEG software
4 This file describes usage of the JPEG conversion programs cjpeg and djpeg,
6 the other documentation files if you wish to use the JPEG library within
15 These programs implement JPEG image compression and decompression. JPEG
17 and gray-scale images. JPEG is designed to handle "real-world" scenes,
19 non-realistic images are not JPEG's strong suit; on that sort of material
22 JPEG is lossy, meaning that the output image is not necessarily identical to
23 the input image. Hence you should not use JPEG if you have to have identica
    [all...]
filelist.doc 1 IJG JPEG LIBRARY: FILE LIST
4 This file is part of the Independent JPEG Group's software.
8 Here is a road map to the files in the IJG JPEG distribution. The
9 distribution includes the JPEG library proper, plus two application
10 programs ("cjpeg" and "djpeg") which use the library to convert JPEG
13 variants of JPEG. There are also two stand-alone applications,
17 THE JPEG LIBRARY
22 jpeglib.h JPEG library's exported data and function declarations.
27 jerror.h Declares JPEG library's error and trace message codes.
30 jpegint.h JPEG library's internal data structures
    [all...]
example.c 5 * to read or write JPEG image files. You should look at this code in
9 * skeleton for constructing routines that call the JPEG library.
11 * We present these routines in the same coding style used in the JPEG code
19 * Include file for users of JPEG library.
37 /******************** JPEG COMPRESSION SAMPLE INTERFACE *******************/
39 /* This half of the example shows how to feed data into the JPEG compressor.
41 * as error recovery (the JPEG code will just exit() if it gets an error).
67 * Sample routine for JPEG compression. We assume that the target file name
74 /* This struct contains the JPEG compression parameters and pointers to
75 * working space (which is allocated as needed by the JPEG library)
    [all...]
jerror.h 5 * This file is part of the Independent JPEG Group's software.
8 * This file defines the error and message codes for the JPEG library.
12 * the JPEG library may wish to include this file to get the error codes
52 JMESSAGE(JERR_BAD_J_COLORSPACE, "Bogus JPEG colorspace")
55 "Wrong JPEG library version: library is %d, caller expects %d")
58 JMESSAGE(JERR_BAD_PRECISION, "Unsupported JPEG data precision %d")
65 JMESSAGE(JERR_BAD_STATE, "Improper call to JPEG library in state %d")
67 "JPEG parameter struct mismatch: library thinks size is %u, caller expects %u")
69 JMESSAGE(JERR_BUFFER_SIZE, "Buffer passed to JPEG library is too small")
78 JMESSAGE(JERR_EMPTY_IMAGE, "Empty JPEG image (DNL not supported)"
    [all...]
wizard.doc 1 Advanced usage instructions for the Independent JPEG Group's JPEG software
6 The "wizard" switches are intended for experimentation with JPEG by persons
7 who are reasonably knowledgeable about the JPEG standard. If you don't know
11 when making files intended for general use, because not all JPEG decoders
12 will support unusual JPEG parameter settings.
19 as examples in the JPEG standard) and scales them up or down according to
24 JPEG and is not supported by all implementations. If you need to ensure
39 will be stored in the JPEG file).
46 # Quantization tables given in JPEG spec, section K.
    [all...]
libjpeg.doc 1 USING THE IJG JPEG LIBRARY
4 This file is part of the Independent JPEG Group's software.
8 This file describes how to use the IJG JPEG library within an application
12 JPEG library. Also see jpeglib.h (the include file to be used by application
42 Progressive JPEG support
66 The IJG JPEG library provides C code to read and write JPEG-compressed image
73 JPEG standard but is necessary for typical applications of JPEG. These
74 functions preprocess the image before JPEG compression or postprocess it afte
    [all...]
  /prebuilt/darwin-x86/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /prebuilt/darwin-x86_64/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /prebuilt/linux-x86/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /prebuilt/linux-x86_64/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /prebuilt/windows/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /prebuilt/windows-x86_64/swt/about_files/
IJG_README 1 The Independent JPEG Group's JPEG software
7 This distribution contains the sixth public release of the Independent JPEG
8 Group's free JPEG software. You are welcome to redistribute this software and
12 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
18 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
21 IJG is not affiliated with the official ISO JPEG standards committee.
29 OVERVIEW General description of JPEG and the IJG software.
31 REFERENCES Where to learn more about JPEG.
44 wizard.doc Advanced usage instructions for JPEG wizards only
    [all...]
  /development/ide/xcode/jpeg.xcodeproj/
project.pbxproj 64 00B06C3C0E3E2D7200FAA74F /* jerror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = jerror.h; path = "../../extlibs/jpeg-6b/jerror.h"; sourceTree = SOURCE_ROOT; };
66 FE08AA3F0945D5BF0057213F /* jconfig.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = jconfig.h; path = "../../extlibs/jpeg-6b/jconfig.h"; sourceTree = SOURCE_ROOT; };
67 FE08AA400945D5BF0057213F /* jpeglib.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = jpeglib.h; path = "../../extlibs/jpeg-6b/jpeglib.h"; sourceTree = SOURCE_ROOT; };
68 FE08AA430945DA0C0057213F /* jcapimin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = "../../extlibs/jpeg-6b/jcapimin.c"; sourceTree = SOURCE_ROOT; };
69 FE08AA440945DA0C0057213F /* jcapistd.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = "../../extlibs/jpeg-6b/jcapistd.c"; sourceTree = SOURCE_ROOT; };
70 FE08AA450945DA0C0057213F /* jccoefct.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = "../../extlibs/jpeg-6b/jccoefct.c"; sourceTree = SOURCE_ROOT; };
71 FE08AA460945DA0C0057213F /* jccolor.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = "../../extlibs/jpeg-6b/jccolor.c"; sourceTree = SOURCE_ROOT; };
72 FE08AA470945DA0C0057213F /* jcdctmgr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = "../../extlibs/jpeg-6b/jcdctmgr.c"; sourceTree = SOURCE_ROOT; };
73 FE08AA480945DA0C0057213F /* jchuff.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = "../../extlibs/jpeg-6b/jchuff.c"; sourceTree = SOURCE_ROOT; };
74 FE08AA490945DA0C0057213F /* jcinit.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = "../../extlibs/jpeg-6b/jcinit.c"; sourceTree = SOURCE_ROOT; }
    [all...]
  /external/skia/xcode/jpeg.xcodeproj/
project.pbxproj 65 00B7E0890EDCA78B00F77EA2 /* jcapimin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../jpeg/jcapimin.c; sourceTree = SOURCE_ROOT; };
66 00B7E08A0EDCA78B00F77EA2 /* jcapistd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../jpeg/jcapistd.c; sourceTree = SOURCE_ROOT; };
67 00B7E08B0EDCA78B00F77EA2 /* jccoefct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../jpeg/jccoefct.c; sourceTree = SOURCE_ROOT; };
68 00B7E08C0EDCA78B00F77EA2 /* jccolor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../jpeg/jccolor.c; sourceTree = SOURCE_ROOT; };
69 00B7E08D0EDCA78B00F77EA2 /* jcdctmgr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = ../../jpeg/jcdctmgr.c; sourceTree = SOURCE_ROOT; };
70 00B7E08E0EDCA78B00F77EA2 /* jchuff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../jpeg/jchuff.c; sourceTree = SOURCE_ROOT; };
71 00B7E0900EDCA78B00F77EA2 /* jcinit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../jpeg/jcinit.c; sourceTree = SOURCE_ROOT; };
72 00B7E0910EDCA78B00F77EA2 /* jcmainct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../jpeg/jcmainct.c; sourceTree = SOURCE_ROOT; };
73 00B7E0920EDCA78B00F77EA2 /* jcmarker.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../jpeg/jcmarker.c; sourceTree = SOURCE_ROOT; };
74 00B7E0930EDCA78B00F77EA2 /* jcmaster.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../jpeg/jcmaster.c; sourceTree = SOURCE_ROOT; }
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/
Android.mk 21 LOCAL_MODULE:= libOMX.TI.JPEG.decoder
35 LOCAL_SHARED_LIBRARIES := libOMX.TI.JPEG.decoder
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/
Android.mk 19 LOCAL_MODULE:= libOMX.TI.JPEG.Encoder
32 LOCAL_SHARED_LIBRARIES := libOMX.TI.JPEG.Encoder
  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_CompressFormatTest.java 38 assertEquals(CompressFormat.JPEG, CompressFormat.valueOf("JPEG"));
59 assertEquals(CompressFormat.JPEG, comFormat[0]);
64 assertTrue(b.compress(CompressFormat.JPEG, 24, new ByteArrayOutputStream()));
  /frameworks/base/media/java/android/media/
CameraProfile.java 27 * capture (jpeg) quality levels (0-100) used for low, medium, and high
34 * Define three quality levels for JPEG image encoding.
45 * Cache the Jpeg encoding quality parameters
50 * Returns a pre-defined still image capture (jpeg) quality level
70 * Returns a pre-defined still image capture (jpeg) quality level
99 throw new RuntimeException("Unexpected Jpeg encoding quality levels " + nLevels);

Completed in 369 milliseconds

1 2 3 4 5 6 7 8 91011>>