HomeSort by relevance Sort by last modified time
    Searched refs:EXIF (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 2 * Javascript EXIF Reader 0.1.2
8 var EXIF = {};
14 EXIF.Tags = {
17 0x9000 : "ExifVersion", // EXIF version
90 EXIF.TiffTags = {
126 EXIF.GPSTags = {
160 EXIF.StringValues = {
343 // but we're only looking for 0xFFE1 for EXIF data
351 // 0xE1 = Application-specific 1 (for EXIF)
467 if (oFile.getStringAt(iStart, 4) != "Exif") {
    [all...]
imageinfo.js 82 exif : {}
100 exif : {}
124 var exif = {};
126 if (typeof EXIF != "undefined" && EXIF.readFromBinaryFile) {
127 exif = EXIF.readFromBinaryFile(data);
137 exif : exif
152 exif : {
    [all...]
  /external/libexif/
libexif.spec 2 Summary: EXIF tag library
15 libexif is a library for parsing, editing, and saving EXIF data. It is
configure 3 # Generated by GNU Autoconf 2.68 for EXIF library 0.6.21.
571 PACKAGE_NAME='EXIF library'
574 PACKAGE_STRING='EXIF library 0.6.21'
578 ac_unique_file="libexif/exif-data.h"
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
exif_parser.js 10 var EXIF_MARK_EXIF = 0xffe1; // Start of exif block.
12 var EXIF_ALIGN_LITTLE = 0x4949; // Indicates little endian exif data.
13 var EXIF_ALIGN_BIG = 0x4d4d; // Indicates big endian exif data.
17 var EXIF_TAG_EXIFDATA = 0x8769; // Pointer from TIFF to the EXIF IFD.
161 if (magic != 'Exif\0\0') {
164 this.vlog('Invalid EXIF magic: ' + magic + br.readString(100));
168 // Offsets inside the EXIF block are based after the magic string.
212 // EXIF Directory may be specified as a tag in the image directory.
214 this.vlog('Read EXIF directory.');
217 metadata.ifd.exif = {}
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
info.js 66 var divexif = document.querySelector('#exif');
72 // If EXIF data exists, unhide the EXIF table and render.
73 if (imageinfo['exif'] && !isEmpty(imageinfo['exif'])) {
76 renderCells(exifcells, imageinfo['exif']);
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
exif_encoder.js 7 // TODO:(kaznacheev) Share the EXIF constants with exif_parser.js
13 var EXIF_MARK_EXIF = 0xffe1; // Start of exif block.
15 var EXIF_ALIGN_LITTLE = 0x4949; // Indicates little endian exif data.
16 var EXIF_ALIGN_BIG = 0x4d4d; // Indicates big endian exif data.
20 var EXIF_TAG_EXIFDATA = 0x8769; // Pointer from TIFF to the EXIF IFD.
33 * The Exif metadata encoder.
66 var exif = this.ifd_.exif;
67 if (!exif)
68 exif = this.ifd_.exif = {}
    [all...]

Completed in 78 milliseconds