tifftools icon indicating copy to clipboard operation
tifftools copied to clipboard

Pure Python tools for reading and writing all TIFF IFDs, sub-IFDs, and tags.

Results 6 tifftools issues
Sort by recently updated
recently updated
newest added

Could you please provide tiff_set function example? I did several tries and looked into src code, but nothing seems to work for me. For starters I tried to save F_Num...

It seems to me, anyway. from `commands.py:538 tiff_set` ``` if os.path.realpath(source) == os.path.realpath(output) and source != '-': with tempfile.TemporaryDirectory('tifftools') as tmpdir: output = os.path.join(tmpdir, 'output.tiff') _tiff_set(source, output, setlist, unset, setfrom,...

Hi, Thanks for this project Is it possible to run split and merge with python interface without using the filesystem ?

This PR creates the functions `set_projection` and `set_gcps` in `commands.py`. These functions can be called directly, invoked through `tiff_set`, or invoked via the command line. Resolves #101. Note: `pyproj` is...

It would be nice to include a function that allows a user to add a projection and ground control points to tiff tags. This would make writing geospatial images much...