Changeset 13997
- Timestamp:
- 03/13/08 20:54:57 (4 months ago)
- Files:
-
- branches/1.5/gdal/apps/gdalwarp.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.5/gdal/apps/gdalwarp.cpp
r13897 r13997 432 432 { 433 433 bEnableSrcAlpha = TRUE; 434 printf( "Using band %d of source image as alpha.\n", 435 GDALGetRasterCount(hSrcDS) ); 434 if( !bQuiet ) 435 printf( "Using band %d of source image as alpha.\n", 436 GDALGetRasterCount(hSrcDS) ); 436 437 } 437 438 … … 530 531 == GCI_AlphaBand ) 531 532 { 532 printf( "Using band %d of destination image as alpha.\n", 533 GDALGetRasterCount(hDstDS) ); 533 if( !bQuiet ) 534 printf( "Using band %d of destination image as alpha.\n", 535 GDALGetRasterCount(hDstDS) ); 534 536 535 537 bEnableDstAlpha = TRUE; … … 822 824 { 823 825 hCT = GDALCloneColorTable( hCT ); 824 printf( "Copying color table from %s to new file.\n", 825 papszSrcFiles[iSrc] ); 826 if( !bQuiet ) 827 printf( "Copying color table from %s to new file.\n", 828 papszSrcFiles[iSrc] ); 826 829 } 827 830 }
