HomeSort by relevance Sort by last modified time
    Searched full:adjoin (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/ImageMagick/Magick++/tests/
attributes.cpp 60 // adjoin
64 if ( image.adjoin() != true )
68 << ", adjoin default not 'true' as expected" << endl;
72 image.adjoin( false );
73 if ( image.adjoin() != false )
76 cout << "Line: " << __LINE__ << ", adjoin failed set to 'false'" << endl;
80 image.adjoin( true );
81 if ( image.adjoin() != true )
84 cout << "Line: " << __LINE__ << ", adjoin failed set to 'true'" << endl;
  /external/ImageMagick/MagickCore/
exception-private.h 86 if (image_info->adjoin != MagickFalse) \
image.h 376 adjoin, /* save images to separate scene files */ member in struct:_ImageInfo
constitute.c     [all...]
  /external/ImageMagick/PerlMagick/t/
setattribute.t 31 testSetAttribute('input.miff','adjoin','True');
34 testSetAttribute('input.miff','adjoin','False');
  /external/ImageMagick/Magick++/lib/Magick++/
Options.h 42 void adjoin(const bool flag_);
43 bool adjoin(void) const;
  /external/ImageMagick/Magick++/lib/
Options.cpp 65 void Magick::Options::adjoin(const bool flag_) function in class:Magick::Options
67 _imageInfo->adjoin=static_cast<MagickBooleanType>(
71 bool Magick::Options::adjoin(void) const function in class:Magick::Options
73 return(static_cast<bool>(_imageInfo->adjoin));
  /external/ImageMagick/utilities/
import.1 13 \-adjoin join images into a single multi-image file
import.1.in 13 \-adjoin join images into a single multi-image file
montage.1 13 \-adjoin join images into a single multi-image file
montage.1.in 13 \-adjoin join images into a single multi-image file
  /external/v8/test/mjsunit/compiler/
expression-trees.js 46 // Adjoin every possible left and right subtree.
  /external/ImageMagick/coders/
ps2.c 584 if ((image_info->adjoin != MagickFalse) &&
610 if (image_info->adjoin == MagickFalse)
    [all...]
debug.c 269 } while (image_info->adjoin != MagickFalse);
icon.c 934 } while ((next != (Image *) NULL) && (image_info->adjoin != MagickFalse));
    [all...]
info.c 220 } while (image_info->adjoin != MagickFalse);
ipl.c 609 if(image_info->adjoin == MagickFalse)
679 }while (image_info->adjoin != MagickFalse);
ps3.c     [all...]
aai.c 424 } while (image_info->adjoin != MagickFalse);
avs.c 424 } while (image_info->adjoin != MagickFalse);
fax.c 403 } while (write_info->adjoin != MagickFalse);
  /external/v8/src/
effects.h 66 // through functional extension. It represents the map as an adjoin of a list
  /external/ImageMagick/ImageMagick/script/
import.html 88 <td><a href="command-line-options.php#adjoin">-adjoin</a></td>
  /external/ImageMagick/www/
import.html 92 <td><a href="command-line-options.html#adjoin">-adjoin</a></td>
  /external/ImageMagick/ImageMagick/api/
constitute.html 252 <p>WriteImages() writes an image sequence into one or more files. While WriteImage() can write an image sequence, it is limited to writing the sequence into a single file using a format which supports multiple frames. WriteImages(), however, does not have this limitation, instead it generates multiple output files if necessary (or when requested). When ImageInfo's adjoin flag is set to MagickFalse, the file name is expected to include a printf-style formatting string for the frame number (e.g. "image02d.png").</p>

Completed in 943 milliseconds

1 2 3 4 5