Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions 3rdparty/tiff-tools/tiffcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ static TIFF* bias = NULL;
static int pageNum = 0;
static int pageInSeq = 0;

static void setOptions(int i, int p)
{
/*set options which will be set by command line options in main() */
ignore = i;
pageInSeq = p;
}

static int nextSrcImage (TIFF *tif, char **imageSpec)
/*
seek to the next image specified in *imageSpec
Expand Down
Loading