cross-image 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/README.md +128 -7
  2. package/esm/src/formats/jpeg.d.ts +12 -1
  3. package/esm/src/formats/jpeg.js +633 -4
  4. package/esm/src/formats/png_base.d.ts +8 -0
  5. package/esm/src/formats/png_base.js +176 -3
  6. package/esm/src/formats/tiff.d.ts +6 -1
  7. package/esm/src/formats/tiff.js +31 -0
  8. package/esm/src/formats/webp.d.ts +9 -2
  9. package/esm/src/formats/webp.js +211 -62
  10. package/esm/src/image.d.ts +51 -0
  11. package/esm/src/image.js +225 -5
  12. package/esm/src/types.d.ts +41 -1
  13. package/esm/src/utils/image_processing.d.ts +55 -0
  14. package/esm/src/utils/image_processing.js +210 -0
  15. package/esm/src/utils/metadata/xmp.d.ts +52 -0
  16. package/esm/src/utils/metadata/xmp.js +325 -0
  17. package/esm/src/utils/resize.d.ts +4 -0
  18. package/esm/src/utils/resize.js +74 -0
  19. package/package.json +1 -1
  20. package/script/src/formats/jpeg.d.ts +12 -1
  21. package/script/src/formats/jpeg.js +633 -4
  22. package/script/src/formats/png_base.d.ts +8 -0
  23. package/script/src/formats/png_base.js +176 -3
  24. package/script/src/formats/tiff.d.ts +6 -1
  25. package/script/src/formats/tiff.js +31 -0
  26. package/script/src/formats/webp.d.ts +9 -2
  27. package/script/src/formats/webp.js +211 -62
  28. package/script/src/image.d.ts +51 -0
  29. package/script/src/image.js +223 -3
  30. package/script/src/types.d.ts +41 -1
  31. package/script/src/utils/image_processing.d.ts +55 -0
  32. package/script/src/utils/image_processing.js +216 -0
  33. package/script/src/utils/metadata/xmp.d.ts +52 -0
  34. package/script/src/utils/metadata/xmp.js +333 -0
  35. package/script/src/utils/resize.d.ts +4 -0
  36. package/script/src/utils/resize.js +75 -0
@@ -76,6 +76,8 @@ export declare abstract class PNGBase {
76
76
  * Parse eXIf (EXIF) chunk
77
77
  */
78
78
  protected parseExifChunk(data: Uint8Array, metadata: ImageMetadata): void;
79
+ protected parseGPSIFD(data: Uint8Array, gpsIfdOffset: number, littleEndian: boolean, metadata: ImageMetadata): void;
80
+ protected readRational(data: Uint8Array, offset: number, littleEndian: boolean): number;
79
81
  /**
80
82
  * Create pHYs (physical pixel dimensions) chunk
81
83
  */
@@ -88,6 +90,8 @@ export declare abstract class PNGBase {
88
90
  * Create eXIf (EXIF) chunk
89
91
  */
90
92
  protected createExifChunk(metadata: ImageMetadata): Uint8Array | null;
93
+ protected createGPSIFD(metadata: ImageMetadata, gpsIfdStart: number): number[];
94
+ protected writeRational(output: number[], numerator: number, denominator: number): void;
91
95
  /**
92
96
  * Concatenate multiple byte arrays into a single Uint8Array
93
97
  */
@@ -104,5 +108,9 @@ export declare abstract class PNGBase {
104
108
  * Shared method to avoid duplication between PNG and APNG encoding
105
109
  */
106
110
  protected addMetadataChunks(chunks: Uint8Array[], metadata: ImageMetadata | undefined): void;
111
+ /**
112
+ * Get the list of metadata fields supported by PNG format
113
+ */
114
+ getSupportedMetadata(): Array<keyof ImageMetadata>;
107
115
  }
108
116
  //# sourceMappingURL=png_base.d.ts.map
@@ -315,6 +315,7 @@ export class PNGBase {
315
315
  const numEntries = littleEndian
316
316
  ? data[ifd0Offset] | (data[ifd0Offset + 1] << 8)
317
317
  : (data[ifd0Offset] << 8) | data[ifd0Offset + 1];
318
+ let gpsIfdOffset = 0;
318
319
  for (let i = 0; i < numEntries; i++) {
319
320
  const entryOffset = ifd0Offset + 2 + i * 12;
320
321
  if (entryOffset + 12 > data.length)
@@ -339,12 +340,96 @@ export class PNGBase {
339
340
  }
340
341
  }
341
342
  }
343
+ // GPS IFD Pointer tag (0x8825)
344
+ if (tag === 0x8825) {
345
+ gpsIfdOffset = littleEndian
346
+ ? data[entryOffset + 8] | (data[entryOffset + 9] << 8) |
347
+ (data[entryOffset + 10] << 16) | (data[entryOffset + 11] << 24)
348
+ : (data[entryOffset + 8] << 24) | (data[entryOffset + 9] << 16) |
349
+ (data[entryOffset + 10] << 8) | data[entryOffset + 11];
350
+ }
351
+ }
352
+ // Parse GPS IFD if present
353
+ if (gpsIfdOffset > 0 && gpsIfdOffset + 2 <= data.length) {
354
+ this.parseGPSIFD(data, gpsIfdOffset, littleEndian, metadata);
342
355
  }
343
356
  }
344
357
  catch (_e) {
345
358
  // Ignore EXIF parsing errors
346
359
  }
347
360
  }
361
+ parseGPSIFD(data, gpsIfdOffset, littleEndian, metadata) {
362
+ try {
363
+ const numEntries = littleEndian
364
+ ? data[gpsIfdOffset] | (data[gpsIfdOffset + 1] << 8)
365
+ : (data[gpsIfdOffset] << 8) | data[gpsIfdOffset + 1];
366
+ let latRef = "";
367
+ let lonRef = "";
368
+ let latitude;
369
+ let longitude;
370
+ for (let i = 0; i < numEntries; i++) {
371
+ const entryOffset = gpsIfdOffset + 2 + i * 12;
372
+ if (entryOffset + 12 > data.length)
373
+ break;
374
+ const tag = littleEndian
375
+ ? data[entryOffset] | (data[entryOffset + 1] << 8)
376
+ : (data[entryOffset] << 8) | data[entryOffset + 1];
377
+ const type = littleEndian
378
+ ? data[entryOffset + 2] | (data[entryOffset + 3] << 8)
379
+ : (data[entryOffset + 2] << 8) | data[entryOffset + 3];
380
+ const valueOffset = littleEndian
381
+ ? data[entryOffset + 8] | (data[entryOffset + 9] << 8) |
382
+ (data[entryOffset + 10] << 16) | (data[entryOffset + 11] << 24)
383
+ : (data[entryOffset + 8] << 24) | (data[entryOffset + 9] << 16) |
384
+ (data[entryOffset + 10] << 8) | data[entryOffset + 11];
385
+ // GPSLatitudeRef (0x0001)
386
+ if (tag === 0x0001 && type === 2) {
387
+ latRef = String.fromCharCode(data[entryOffset + 8]);
388
+ }
389
+ // GPSLatitude (0x0002)
390
+ if (tag === 0x0002 && type === 5 && valueOffset + 24 <= data.length) {
391
+ const degrees = this.readRational(data, valueOffset, littleEndian);
392
+ const minutes = this.readRational(data, valueOffset + 8, littleEndian);
393
+ const seconds = this.readRational(data, valueOffset + 16, littleEndian);
394
+ latitude = degrees + minutes / 60 + seconds / 3600;
395
+ }
396
+ // GPSLongitudeRef (0x0003)
397
+ if (tag === 0x0003 && type === 2) {
398
+ lonRef = String.fromCharCode(data[entryOffset + 8]);
399
+ }
400
+ // GPSLongitude (0x0004)
401
+ if (tag === 0x0004 && type === 5 && valueOffset + 24 <= data.length) {
402
+ const degrees = this.readRational(data, valueOffset, littleEndian);
403
+ const minutes = this.readRational(data, valueOffset + 8, littleEndian);
404
+ const seconds = this.readRational(data, valueOffset + 16, littleEndian);
405
+ longitude = degrees + minutes / 60 + seconds / 3600;
406
+ }
407
+ }
408
+ // Apply hemisphere references
409
+ if (latitude !== undefined && latRef) {
410
+ metadata.latitude = latRef === "S" ? -latitude : latitude;
411
+ }
412
+ if (longitude !== undefined && lonRef) {
413
+ metadata.longitude = lonRef === "W" ? -longitude : longitude;
414
+ }
415
+ }
416
+ catch (_e) {
417
+ // Ignore GPS parsing errors
418
+ }
419
+ }
420
+ readRational(data, offset, littleEndian) {
421
+ const numerator = littleEndian
422
+ ? data[offset] | (data[offset + 1] << 8) | (data[offset + 2] << 16) |
423
+ (data[offset + 3] << 24)
424
+ : (data[offset] << 24) | (data[offset + 1] << 16) |
425
+ (data[offset + 2] << 8) | data[offset + 3];
426
+ const denominator = littleEndian
427
+ ? data[offset + 4] | (data[offset + 5] << 8) | (data[offset + 6] << 16) |
428
+ (data[offset + 7] << 24)
429
+ : (data[offset + 4] << 24) | (data[offset + 5] << 16) |
430
+ (data[offset + 6] << 8) | data[offset + 7];
431
+ return denominator !== 0 ? numerator / denominator : 0;
432
+ }
348
433
  /**
349
434
  * Create pHYs (physical pixel dimensions) chunk
350
435
  */
@@ -385,14 +470,19 @@ export class PNGBase {
385
470
  value: new TextEncoder().encode(dateStr),
386
471
  });
387
472
  }
388
- if (entries.length === 0)
473
+ // Check if we have GPS data
474
+ const hasGPS = metadata.latitude !== undefined &&
475
+ metadata.longitude !== undefined;
476
+ if (entries.length === 0 && !hasGPS)
389
477
  return null;
390
478
  const exif = [];
391
479
  exif.push(0x49, 0x49); // "II"
392
480
  exif.push(0x2a, 0x00); // 42
393
481
  exif.push(0x08, 0x00, 0x00, 0x00);
394
- exif.push(entries.length & 0xff, (entries.length >> 8) & 0xff);
395
- let dataOffset = 8 + 2 + entries.length * 12 + 4;
482
+ // Number of entries (add GPS IFD pointer if we have GPS data)
483
+ const ifd0Entries = entries.length + (hasGPS ? 1 : 0);
484
+ exif.push(ifd0Entries & 0xff, (ifd0Entries >> 8) & 0xff);
485
+ let dataOffset = 8 + 2 + ifd0Entries * 12 + 4;
396
486
  for (const entry of entries) {
397
487
  exif.push(entry.tag & 0xff, (entry.tag >> 8) & 0xff);
398
488
  exif.push(entry.type & 0xff, (entry.type >> 8) & 0xff);
@@ -408,6 +498,16 @@ export class PNGBase {
408
498
  dataOffset += entry.value.length;
409
499
  }
410
500
  }
501
+ // Add GPS IFD pointer if we have GPS data
502
+ let gpsIfdOffset = 0;
503
+ if (hasGPS) {
504
+ gpsIfdOffset = dataOffset;
505
+ // GPS IFD Pointer tag (0x8825), type 4 (LONG), count 1
506
+ exif.push(0x25, 0x88); // Tag
507
+ exif.push(0x04, 0x00); // Type
508
+ exif.push(0x01, 0x00, 0x00, 0x00); // Count
509
+ exif.push(gpsIfdOffset & 0xff, (gpsIfdOffset >> 8) & 0xff, (gpsIfdOffset >> 16) & 0xff, (gpsIfdOffset >> 24) & 0xff);
510
+ }
411
511
  exif.push(0x00, 0x00, 0x00, 0x00);
412
512
  for (const entry of entries) {
413
513
  if (entry.value.length > 4) {
@@ -416,8 +516,65 @@ export class PNGBase {
416
516
  }
417
517
  }
418
518
  }
519
+ // Add GPS IFD if we have GPS data
520
+ if (hasGPS) {
521
+ const gpsIfd = this.createGPSIFD(metadata, gpsIfdOffset);
522
+ for (const byte of gpsIfd) {
523
+ exif.push(byte);
524
+ }
525
+ }
419
526
  return new Uint8Array(exif);
420
527
  }
528
+ createGPSIFD(metadata, gpsIfdStart) {
529
+ const gps = [];
530
+ const numEntries = 4;
531
+ gps.push(numEntries & 0xff, (numEntries >> 8) & 0xff);
532
+ const latitude = metadata.latitude;
533
+ const longitude = metadata.longitude;
534
+ const absLat = Math.abs(latitude);
535
+ const absLon = Math.abs(longitude);
536
+ const latDeg = Math.floor(absLat);
537
+ const latMin = Math.floor((absLat - latDeg) * 60);
538
+ const latSec = ((absLat - latDeg) * 60 - latMin) * 60;
539
+ const lonDeg = Math.floor(absLon);
540
+ const lonMin = Math.floor((absLon - lonDeg) * 60);
541
+ const lonSec = ((absLon - lonDeg) * 60 - lonMin) * 60;
542
+ let dataOffset = gpsIfdStart + 2 + numEntries * 12 + 4;
543
+ // Entry 1: GPSLatitudeRef
544
+ gps.push(0x01, 0x00);
545
+ gps.push(0x02, 0x00);
546
+ gps.push(0x02, 0x00, 0x00, 0x00);
547
+ gps.push(latitude >= 0 ? 78 : 83, 0x00, 0x00, 0x00);
548
+ // Entry 2: GPSLatitude
549
+ gps.push(0x02, 0x00);
550
+ gps.push(0x05, 0x00);
551
+ gps.push(0x03, 0x00, 0x00, 0x00);
552
+ gps.push(dataOffset & 0xff, (dataOffset >> 8) & 0xff, (dataOffset >> 16) & 0xff, (dataOffset >> 24) & 0xff);
553
+ dataOffset += 24;
554
+ // Entry 3: GPSLongitudeRef
555
+ gps.push(0x03, 0x00);
556
+ gps.push(0x02, 0x00);
557
+ gps.push(0x02, 0x00, 0x00, 0x00);
558
+ gps.push(longitude >= 0 ? 69 : 87, 0x00, 0x00, 0x00);
559
+ // Entry 4: GPSLongitude
560
+ gps.push(0x04, 0x00);
561
+ gps.push(0x05, 0x00);
562
+ gps.push(0x03, 0x00, 0x00, 0x00);
563
+ gps.push(dataOffset & 0xff, (dataOffset >> 8) & 0xff, (dataOffset >> 16) & 0xff, (dataOffset >> 24) & 0xff);
564
+ gps.push(0x00, 0x00, 0x00, 0x00);
565
+ // Write rationals
566
+ this.writeRational(gps, latDeg, 1);
567
+ this.writeRational(gps, latMin, 1);
568
+ this.writeRational(gps, Math.round(latSec * 1000000), 1000000);
569
+ this.writeRational(gps, lonDeg, 1);
570
+ this.writeRational(gps, lonMin, 1);
571
+ this.writeRational(gps, Math.round(lonSec * 1000000), 1000000);
572
+ return gps;
573
+ }
574
+ writeRational(output, numerator, denominator) {
575
+ output.push(numerator & 0xff, (numerator >> 8) & 0xff, (numerator >> 16) & 0xff, (numerator >> 24) & 0xff);
576
+ output.push(denominator & 0xff, (denominator >> 8) & 0xff, (denominator >> 16) & 0xff, (denominator >> 24) & 0xff);
577
+ }
421
578
  /**
422
579
  * Concatenate multiple byte arrays into a single Uint8Array
423
580
  */
@@ -484,4 +641,20 @@ export class PNGBase {
484
641
  }
485
642
  }
486
643
  }
644
+ /**
645
+ * Get the list of metadata fields supported by PNG format
646
+ */
647
+ getSupportedMetadata() {
648
+ return [
649
+ "creationDate", // eXIf chunk
650
+ "latitude", // eXIf chunk (GPS IFD)
651
+ "longitude", // eXIf chunk (GPS IFD)
652
+ "dpiX", // pHYs chunk
653
+ "dpiY", // pHYs chunk
654
+ "title", // tEXt chunk
655
+ "author", // tEXt chunk
656
+ "description", // tEXt chunk
657
+ "copyright", // tEXt chunk
658
+ ];
659
+ }
487
660
  }
@@ -1,4 +1,4 @@
1
- import type { ImageData, ImageFormat, MultiFrameImageData } from "../types.js";
1
+ import type { ImageData, ImageFormat, ImageMetadata, MultiFrameImageData } from "../types.js";
2
2
  /**
3
3
  * Options for TIFF encoding
4
4
  */
@@ -74,5 +74,10 @@ export declare class TIFFFormat implements ImageFormat {
74
74
  * Returns null if the TIFF uses unsupported features
75
75
  */
76
76
  private decodePureJSFromIFD;
77
+ /**
78
+ * Get list of metadata fields supported by TIFF format
79
+ * TIFF supports extensive EXIF metadata including GPS and InteropIFD
80
+ */
81
+ getSupportedMetadata(): Array<keyof ImageMetadata>;
77
82
  }
78
83
  //# sourceMappingURL=tiff.d.ts.map
@@ -932,4 +932,35 @@ export class TIFFFormat {
932
932
  }
933
933
  return rgba;
934
934
  }
935
+ /**
936
+ * Get list of metadata fields supported by TIFF format
937
+ * TIFF supports extensive EXIF metadata including GPS and InteropIFD
938
+ */
939
+ getSupportedMetadata() {
940
+ return [
941
+ "creationDate",
942
+ "description",
943
+ "author",
944
+ "copyright",
945
+ "cameraMake",
946
+ "cameraModel",
947
+ "orientation",
948
+ "software",
949
+ "iso",
950
+ "exposureTime",
951
+ "fNumber",
952
+ "focalLength",
953
+ "flash",
954
+ "whiteBalance",
955
+ "lensMake",
956
+ "lensModel",
957
+ "userComment",
958
+ "latitude",
959
+ "longitude",
960
+ "dpiX",
961
+ "dpiY",
962
+ "physicalWidth",
963
+ "physicalHeight",
964
+ ];
965
+ }
935
966
  }
@@ -1,4 +1,4 @@
1
- import type { ImageData, ImageFormat, WebPEncodeOptions } from "../types.js";
1
+ import type { ImageData, ImageFormat, ImageMetadata, WebPEncodeOptions } from "../types.js";
2
2
  /**
3
3
  * WebP format handler
4
4
  * Implements a basic WebP decoder and encoder
@@ -30,10 +30,17 @@ export declare class WebPFormat implements ImageFormat {
30
30
  private readUint24LE;
31
31
  private decodeUsingRuntime;
32
32
  private parseEXIF;
33
+ private parseGPSIFD;
34
+ private readRational;
33
35
  private parseXMP;
34
36
  private injectMetadata;
35
37
  private createEXIFChunk;
38
+ private createGPSIFD;
39
+ private writeRational;
36
40
  private createXMPChunk;
37
- private escapeXML;
41
+ /**
42
+ * Get the list of metadata fields supported by WebP format
43
+ */
44
+ getSupportedMetadata(): Array<keyof ImageMetadata>;
38
45
  }
39
46
  //# sourceMappingURL=webp.d.ts.map