diff options
author | stanton <stanton> | 1999-04-24 01:50:46 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-04-24 01:50:46 (GMT) |
commit | 33b9462f0016ef41b6c303739ad7f53bc697430f (patch) | |
tree | 51fa2de010b339d9d837978fb86ce589f42a3d01 /generic/tkImgPhoto.c | |
parent | 561def0a476b2905df665d317583408e48cb8ff2 (diff) | |
download | tk-33b9462f0016ef41b6c303739ad7f53bc697430f.zip tk-33b9462f0016ef41b6c303739ad7f53bc697430f.tar.gz tk-33b9462f0016ef41b6c303739ad7f53bc697430f.tar.bz2 |
merged 8.1.0 changes into mainline
Diffstat (limited to 'generic/tkImgPhoto.c')
-rw-r--r-- | generic/tkImgPhoto.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c index 9fb74e6..ce49c94 100644 --- a/generic/tkImgPhoto.c +++ b/generic/tkImgPhoto.c @@ -15,7 +15,7 @@ * Department of Computer Science, * Australian National University. * - * RCS: @(#) $Id: tkImgPhoto.c,v 1.6 1999/04/16 01:51:15 stanton Exp $ + * RCS: @(#) $Id: tkImgPhoto.c,v 1.7 1999/04/24 01:50:48 stanton Exp $ */ #include "tkInt.h" @@ -851,6 +851,11 @@ ImgPhotoCmd(clientData, interp, argc, argv) != TCL_OK) { return TCL_ERROR; } + if (Tcl_SetChannelOption(interp, chan, "-encoding", "binary") + != TCL_OK) { + return TCL_ERROR; + } + if (MatchFileFormat(interp, chan, options.name, options.format, &imageFormat, &imageWidth, &imageHeight) != TCL_OK) { Tcl_Close(NULL, chan); @@ -1364,6 +1369,10 @@ ImgPhotoConfigureMaster(interp, masterPtr, argc, argv, flags) != TCL_OK) { return TCL_ERROR; } + if (Tcl_SetChannelOption(interp, chan, "-encoding", "binary") + != TCL_OK) { + return TCL_ERROR; + } if (MatchFileFormat(interp, chan, masterPtr->fileString, masterPtr->format, &imageFormat, &imageWidth, &imageHeight) != TCL_OK) { |