forked from libvips/libvips
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tiffsave: ensure large file support (>2GB) on MSVC
On MSVC, `off_t` and `lseek()` are limited to signed 32-bit offsets, which limits their capability to handle files larger than 2GB. To support saving TIFF files that exceed this size, replace their use with `gint64` and `vips__seek()`, where the latter uses `_lseeki64()` internally. See: conan-io/conan#15578.
- Loading branch information
Showing
3 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters