]> granicus.if.org Git - imagemagick/commitdiff
Remove debugging prints
authoranthony <anthony@git.imagemagick.org>
Mon, 14 Mar 2011 13:22:20 +0000 (13:22 +0000)
committeranthony <anthony@git.imagemagick.org>
Mon, 14 Mar 2011 13:22:20 +0000 (13:22 +0000)
magick/distort.c

index 91f2a8f2fd597166ec48fd7e9f76ea8d1d5a4ade..e33bb3a8418b500328fbd76c989ad436a27c7f50 100644 (file)
@@ -2429,11 +2429,6 @@ MagickExport Image *SparseColorImage(const Image *image,
   assert(exception != (ExceptionInfo *) NULL);
   assert(exception->signature == MagickSignature);
 
-fprintf(stderr, "number_arguments = %ld\n", (long) number_arguments);
-for(number_colors=0; number_colors<number_arguments; number_colors++)
-    fprintf(stderr, "%lf, ", arguments[number_colors]);
-fprintf(stderr, "\n");
-
   /* Determine number of color values needed per control point */
   number_colors=0;
   if ( channel & RedChannel     ) number_colors++;
@@ -2442,8 +2437,6 @@ fprintf(stderr, "\n");
   if ( channel & IndexChannel   ) number_colors++;
   if ( channel & OpacityChannel ) number_colors++;
 
-fprintf(stderr, "number_colors = %ld\n", (long) number_colors);
-
   /*
     Convert input arguments into mapping coefficients to apply the distortion.
     Note some Methods may fall back to other simpler methods.