~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/imageio/format/tiff.c

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-07-12 09:36:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110712093646-yp9dbxan44dmw15h
Tags: 0.9-1
* New upstream release.
* Remove all patches now upstream; only patch for
  -Wno-error=unused-but-set-variable remains.
* Bump Standards-Version to 3.9.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
  TIFFSetField(tif, TIFFTAG_RESOLUTIONUNIT, RESUNIT_INCH);
79
79
  TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, DT_TIFFIO_STRIPE);
80
80
  TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 3);
81
 
  TIFFSetField(tif, TIFFTAG_XRESOLUTION, 150.0);
82
 
  TIFFSetField(tif, TIFFTAG_YRESOLUTION, 150.0);
 
81
  TIFFSetField(tif, TIFFTAG_XRESOLUTION, 300.0);
 
82
  TIFFSetField(tif, TIFFTAG_YRESOLUTION, 300.0);
83
83
  TIFFSetField(tif, TIFFTAG_ZIPQUALITY, 9);
84
84
 
85
85
  const uint8_t  *in8 =(const uint8_t  *)in_void;