/external/ImageMagick/MagickCore/ |
D | geometry.c | 615 geometry_info; in IsGeometry() local 622 flags=ParseGeometry(geometry,&geometry_info); in IsGeometry() 861 GeometryInfo *geometry_info) in ParseGeometry() argument 883 assert(geometry_info != (GeometryInfo *) NULL); in ParseGeometry() 884 (void) memset(geometry_info,0,sizeof(*geometry_info)); in ParseGeometry() 897 geometry_info->rho=coordinate.rho; in ParseGeometry() 898 geometry_info->sigma=coordinate.sigma; in ParseGeometry() 899 geometry_info->xi=coordinate.xi; in ParseGeometry() 900 geometry_info->psi=coordinate.psi; in ParseGeometry() 1030 geometry_info->rho=value; in ParseGeometry() [all …]
|
D | color.c | 2182 GeometryInfo *geometry_info) in ParseCSSColor() argument 2193 SetGeometryInfo(geometry_info); in ParseCSSColor() 2221 geometry_info->rho=intensity; in ParseCSSColor() 2229 geometry_info->sigma=intensity; in ParseCSSColor() 2235 geometry_info->xi=intensity; in ParseCSSColor() 2241 geometry_info->psi=intensity; in ParseCSSColor() 2247 geometry_info->chi=intensity; in ParseCSSColor() 2269 geometry_info; in QueryColorCompliance() local 2454 flags=ParseCSSColor(name,&geometry_info); in QueryColorCompliance() 2456 flags=ParseCSSColor(name+i+1,&geometry_info); in QueryColorCompliance() [all …]
|
D | constitute.c | 453 geometry_info; in ReadImage() local 709 geometry_info.rho=next->resolution.x; in ReadImage() 710 geometry_info.sigma=1.0; in ReadImage() 711 flags=ParseGeometry(value,&geometry_info); in ReadImage() 712 if (geometry_info.sigma != 0) in ReadImage() 713 next->resolution.x=geometry_info.rho/geometry_info.sigma; in ReadImage() 715 next->resolution.x=geometry_info.rho+geometry_info.sigma/1000.0; in ReadImage() 721 geometry_info.rho=next->resolution.y; in ReadImage() 722 geometry_info.sigma=1.0; in ReadImage() 723 flags=ParseGeometry(value,&geometry_info); in ReadImage() [all …]
|
D | composite.c | 543 geometry_info; in CompositeImage() local 597 SetGeometryInfo(&geometry_info); in CompositeImage() 812 flags=ParseGeometry(value,&geometry_info); in CompositeImage() 826 width=2.0*geometry_info.rho; in CompositeImage() 829 height=2.0*geometry_info.sigma; in CompositeImage() 845 angle=DegreesToRadians(geometry_info.xi); in CompositeImage() 858 angle_start=DegreesToRadians(geometry_info.xi); in CompositeImage() 859 angle_range=DegreesToRadians(geometry_info.psi)-angle_start; in CompositeImage() 969 SetGeometryInfo(&geometry_info); in CompositeImage() 973 flags=ParseGeometry(value,&geometry_info); in CompositeImage() [all …]
|
D | threshold.c | 938 geometry_info; in BlackThresholdImage() local 966 flags=ParseGeometry(thresholds,&geometry_info); in BlackThresholdImage() 967 threshold.red=geometry_info.rho; in BlackThresholdImage() 968 threshold.green=geometry_info.rho; in BlackThresholdImage() 969 threshold.blue=geometry_info.rho; in BlackThresholdImage() 970 threshold.black=geometry_info.rho; in BlackThresholdImage() 973 threshold.green=geometry_info.sigma; in BlackThresholdImage() 975 threshold.blue=geometry_info.xi; in BlackThresholdImage() 977 threshold.alpha=geometry_info.psi; in BlackThresholdImage() 981 threshold.black=geometry_info.psi; in BlackThresholdImage() [all …]
|
D | image.c | 237 geometry_info; in AcquireImage() local 239 flags=ParseGeometry(image_info->density,&geometry_info); in AcquireImage() 241 image->resolution.x=geometry_info.rho; in AcquireImage() 244 image->resolution.y=geometry_info.sigma; in AcquireImage() 279 geometry_info; in AcquireImage() local 281 flags=ParseGeometry(option,&geometry_info); in AcquireImage() 284 if ((double) image->delay > floor(geometry_info.rho+0.5)) in AcquireImage() 286 geometry_info.rho+0.5)); in AcquireImage() 291 if ((double) image->delay < floor(geometry_info.rho+0.5)) in AcquireImage() 293 geometry_info.sigma+0.5)); in AcquireImage() [all …]
|
D | animate.c | 751 geometry_info; in XAnimateBackgroundImage() local 959 geometry_info.width=window_info.width; in XAnimateBackgroundImage() 960 geometry_info.height=window_info.height; in XAnimateBackgroundImage() 961 geometry_info.x=(ssize_t) window_info.x; in XAnimateBackgroundImage() 962 geometry_info.y=(ssize_t) window_info.y; in XAnimateBackgroundImage() 963 (void) ParseMetaGeometry(geometry,&geometry_info.x,&geometry_info.y, in XAnimateBackgroundImage() 964 &geometry_info.width,&geometry_info.height); in XAnimateBackgroundImage() 965 window_info.width=(unsigned int) geometry_info.width; in XAnimateBackgroundImage() 966 window_info.height=(unsigned int) geometry_info.height; in XAnimateBackgroundImage() 967 window_info.x=(int) geometry_info.x; in XAnimateBackgroundImage() [all …]
|
D | display.c | 7082 geometry_info; in XMagickCommand() local 7123 SetGeometryInfo(&geometry_info); in XMagickCommand() 7617 flags=ParseGeometry(geometry,&geometry_info); in XMagickCommand() 7619 geometry_info.sigma=geometry_info.rho; in XMagickCommand() 7620 shear_image=ShearImage(*image,geometry_info.rho,geometry_info.sigma, in XMagickCommand() 7863 flags=ParseGeometry(levels,&geometry_info); in XMagickCommand() 7864 black_point=geometry_info.rho; in XMagickCommand() 7865 white_point=(flags & SigmaValue) != 0 ? geometry_info.sigma : black_point; in XMagickCommand() 7884 geometry_info; in XMagickCommand() local 7904 flags=ParseGeometry(levels,&geometry_info); in XMagickCommand() [all …]
|
D | visual-effects.c | 545 geometry_info; in ColorizeImage() local 591 flags=ParseGeometry(blend,&geometry_info); in ColorizeImage() 592 blend_percentage.red=geometry_info.rho; in ColorizeImage() 593 blend_percentage.green=geometry_info.rho; in ColorizeImage() 594 blend_percentage.blue=geometry_info.rho; in ColorizeImage() 595 blend_percentage.black=geometry_info.rho; in ColorizeImage() 598 blend_percentage.green=geometry_info.sigma; in ColorizeImage() 600 blend_percentage.blue=geometry_info.xi; in ColorizeImage() 602 blend_percentage.alpha=geometry_info.psi; in ColorizeImage() 606 blend_percentage.black=geometry_info.psi; in ColorizeImage() [all …]
|
/external/ImageMagick/MagickWand/ |
D | operation.c | 1670 geometry_info; in CLISimpleOperatorImage() local 1736 SetGeometryInfo(&geometry_info); in CLISimpleOperatorImage() 1744 flags=ParseGeometry(arg1,&geometry_info); in CLISimpleOperatorImage() 1748 geometry_info.sigma=1.0; in CLISimpleOperatorImage() 1749 new_image=AdaptiveBlurImage(_image,geometry_info.rho, in CLISimpleOperatorImage() 1750 geometry_info.sigma,_exception); in CLISimpleOperatorImage() 1765 flags=ParseGeometry(arg1,&geometry_info); in CLISimpleOperatorImage() 1769 geometry_info.sigma=1.0; in CLISimpleOperatorImage() 1770 new_image=AdaptiveSharpenImage(_image,geometry_info.rho, in CLISimpleOperatorImage() 1771 geometry_info.sigma,_exception); in CLISimpleOperatorImage() [all …]
|
D | mogrify.c | 723 geometry_info; in MogrifyImage() local 764 SetGeometryInfo(&geometry_info); in MogrifyImage() 802 flags=ParseGeometry(argv[i+1],&geometry_info); in MogrifyImage() 804 geometry_info.sigma=1.0; in MogrifyImage() 805 mogrify_image=AdaptiveBlurImage(*image,geometry_info.rho, in MogrifyImage() 806 geometry_info.sigma,exception); in MogrifyImage() 826 flags=ParseGeometry(argv[i+1],&geometry_info); in MogrifyImage() 828 geometry_info.sigma=1.0; in MogrifyImage() 829 mogrify_image=AdaptiveSharpenImage(*image,geometry_info.rho, in MogrifyImage() 830 geometry_info.sigma,exception); in MogrifyImage() [all …]
|
/external/ImageMagick/PerlMagick/ |
D | Magick.xs | 1113 geometry_info; in SetAttribute() local 1230 flags=ParseGeometry(SvPV(sval,na),&geometry_info); in SetAttribute() 1231 image->chromaticity.blue_primary.x=geometry_info.rho; in SetAttribute() 1232 image->chromaticity.blue_primary.y=geometry_info.sigma; in SetAttribute() 1308 flags=ParseGeometry(SvPV(sval,na),&geometry_info); in SetAttribute() 1309 pixel.red=geometry_info.rho; in SetAttribute() 1310 pixel.green=geometry_info.sigma; in SetAttribute() 1311 pixel.blue=geometry_info.xi; in SetAttribute() 1376 flags=ParseGeometry(SvPV(sval,na),&geometry_info); in SetAttribute() 1379 image->delay=(size_t) floor(geometry_info.rho+0.5); in SetAttribute() [all …]
|
/external/ImageMagick/PerlMagick/quantum/ |
D | quantum.xs.in | 1113 geometry_info; local 1230 flags=ParseGeometry(SvPV(sval,na),&geometry_info); 1231 image->chromaticity.blue_primary.x=geometry_info.rho; 1232 image->chromaticity.blue_primary.y=geometry_info.sigma; 1308 flags=ParseGeometry(SvPV(sval,na),&geometry_info); 1309 pixel.red=geometry_info.rho; 1310 pixel.green=geometry_info.sigma; 1311 pixel.blue=geometry_info.xi; 1376 flags=ParseGeometry(SvPV(sval,na),&geometry_info); 1379 image->delay=(size_t) floor(geometry_info.rho+0.5); [all …]
|
/external/ImageMagick/coders/ |
D | msl.c | 638 geometry_info; in MSLStartElement() local 676 SetGeometryInfo(&geometry_info); in MSLStartElement() 947 flags=ParseGeometry(value,&geometry_info); in MSLStartElement() 949 geometry_info.sigma=1.0; in MSLStartElement() 950 affine.sx=geometry_info.rho; in MSLStartElement() 951 affine.sy=geometry_info.sigma; in MSLStartElement() 1013 flags=ParseGeometry(value,&geometry_info); in MSLStartElement() 1015 geometry_info.sigma=1.0; in MSLStartElement() 1016 affine.tx=geometry_info.rho; in MSLStartElement() 1017 affine.ty=geometry_info.sigma; in MSLStartElement() [all …]
|
D | xps.c | 149 geometry_info; in ReadXPSImage() local 211 flags=ParseGeometry(PSDensityGeometry,&geometry_info); in ReadXPSImage() 212 image->resolution.x=geometry_info.rho; in ReadXPSImage() 213 image->resolution.y=geometry_info.sigma; in ReadXPSImage() 219 flags=ParseGeometry(image_info->density,&geometry_info); in ReadXPSImage() 220 image->resolution.x=geometry_info.rho; in ReadXPSImage() 221 image->resolution.y=geometry_info.sigma; in ReadXPSImage()
|
D | mpc.c | 162 geometry_info; in ReadMPCImage() local 232 SetGeometryInfo(&geometry_info); in ReadMPCImage() 381 flags=ParseGeometry(options,&geometry_info); in ReadMPCImage() 382 image->chromaticity.blue_primary.x=geometry_info.rho; in ReadMPCImage() 383 image->chromaticity.blue_primary.y=geometry_info.sigma; in ReadMPCImage() 512 flags=ParseGeometry(options,&geometry_info); in ReadMPCImage() 513 image->chromaticity.green_primary.x=geometry_info.rho; in ReadMPCImage() 514 image->chromaticity.green_primary.y=geometry_info.sigma; in ReadMPCImage() 667 flags=ParseGeometry(options,&geometry_info); in ReadMPCImage() 668 image->chromaticity.red_primary.x=geometry_info.rho; in ReadMPCImage() [all …]
|
D | yuv.c | 157 geometry_info; in ReadYUVImage() local 162 flags=ParseGeometry(image_info->sampling_factor,&geometry_info); in ReadYUVImage() 163 horizontal_factor=(ssize_t) geometry_info.rho; in ReadYUVImage() 164 vertical_factor=(ssize_t) geometry_info.sigma; in ReadYUVImage() 657 geometry_info; in WriteYUVImage() local 662 flags=ParseGeometry(image_info->sampling_factor,&geometry_info); in WriteYUVImage() 663 horizontal_factor=(ssize_t) geometry_info.rho; in WriteYUVImage() 664 vertical_factor=(ssize_t) geometry_info.sigma; in WriteYUVImage()
|
D | jbig.c | 529 geometry_info; in WriteJBIGImage() local 534 flags=ParseGeometry(image_info->density,&geometry_info); in WriteJBIGImage() 535 x_resolution=geometry_info.rho; in WriteJBIGImage() 536 y_resolution=geometry_info.sigma; in WriteJBIGImage()
|
D | ps.c | 547 geometry_info; in ReadPSImage() local 618 flags=ParseGeometry(PSDensityGeometry,&geometry_info); in ReadPSImage() 619 image->resolution.x=geometry_info.rho; in ReadPSImage() 620 image->resolution.y=geometry_info.sigma; in ReadPSImage() 626 flags=ParseGeometry(image_info->density,&geometry_info); in ReadPSImage() 627 image->resolution.x=geometry_info.rho; in ReadPSImage() 628 image->resolution.y=geometry_info.sigma; in ReadPSImage() 1357 geometry_info; in WritePSImage() local 1448 flags=ParseGeometry(PSDensityGeometry,&geometry_info); in WritePSImage() 1449 resolution.x=geometry_info.rho; in WritePSImage() [all …]
|
D | cals.c | 540 geometry_info; in WriteCALSImage() local 542 (void) ParseGeometry(image_info->density,&geometry_info); in WriteCALSImage() 543 density=(size_t) floor(geometry_info.rho+0.5); in WriteCALSImage()
|
D | ps2.c | 393 geometry_info; in WritePS2Image() local 498 flags=ParseGeometry(PSDensityGeometry,&geometry_info); in WritePS2Image() 499 resolution.x=geometry_info.rho; in WritePS2Image() 500 resolution.y=geometry_info.sigma; in WritePS2Image() 506 flags=ParseGeometry(image_info->density,&geometry_info); in WritePS2Image() 507 resolution.x=geometry_info.rho; in WritePS2Image() 508 resolution.y=geometry_info.sigma; in WritePS2Image()
|
D | miff.c | 446 geometry_info; in ReadMIFFImage() local 545 SetGeometryInfo(&geometry_info); in ReadMIFFImage() 692 flags=ParseGeometry(options,&geometry_info); in ReadMIFFImage() 693 image->chromaticity.blue_primary.x=geometry_info.rho; in ReadMIFFImage() 694 image->chromaticity.blue_primary.y=geometry_info.sigma; in ReadMIFFImage() 829 flags=ParseGeometry(options,&geometry_info); in ReadMIFFImage() 830 image->chromaticity.green_primary.x=geometry_info.rho; in ReadMIFFImage() 831 image->chromaticity.green_primary.y=geometry_info.sigma; in ReadMIFFImage() 969 flags=ParseGeometry(options,&geometry_info); in ReadMIFFImage() 970 image->chromaticity.red_primary.x=geometry_info.rho; in ReadMIFFImage() [all …]
|
D | jpeg.c | 1173 geometry_info; in ReadJPEGImage_() local 1181 flags=ParseGeometry(option,&geometry_info); in ReadJPEGImage_() 1183 geometry_info.sigma=geometry_info.rho; in ReadJPEGImage_() 1188 if (geometry_info.rho != 0.0) in ReadJPEGImage_() 1189 scale_factor=jpeg_info->output_width/geometry_info.rho; in ReadJPEGImage_() 1190 if ((geometry_info.sigma != 0.0) && in ReadJPEGImage_() 1191 (scale_factor > (jpeg_info->output_height/geometry_info.sigma))) in ReadJPEGImage_() 1192 scale_factor=jpeg_info->output_height/geometry_info.sigma; in ReadJPEGImage_() 2518 geometry_info; in WriteJPEGImage_() local 2526 flags=ParseGeometry(option,&geometry_info); in WriteJPEGImage_() [all …]
|
D | dpx.c | 1472 geometry_info; in WriteDPXImage() local 1526 flags=ParseGeometry(image_info->sampling_factor,&geometry_info); in WriteDPXImage() 1527 horizontal_factor=(ssize_t) geometry_info.rho; in WriteDPXImage() 1528 vertical_factor=(ssize_t) geometry_info.sigma; in WriteDPXImage() 1780 flags=ParseGeometry(value,&geometry_info); in WriteDPXImage() 1782 geometry_info.sigma=geometry_info.rho; in WriteDPXImage() 1783 dpx.orientation.border[0]=(unsigned short) (geometry_info.rho+0.5); in WriteDPXImage() 1784 dpx.orientation.border[1]=(unsigned short) (geometry_info.sigma+0.5); in WriteDPXImage() 1785 dpx.orientation.border[2]=(unsigned short) (geometry_info.xi+0.5); in WriteDPXImage() 1786 dpx.orientation.border[3]=(unsigned short) (geometry_info.psi+0.5); in WriteDPXImage() [all …]
|
/external/ImageMagick/Magick++/lib/ |
D | Geometry.cpp | 526 geometry_info; in operator =() local 531 flags=ParseGeometry(offset_,&geometry_info); in operator =() 532 _x=geometry_info.rho; in operator =() 533 _y=geometry_info.sigma; in operator =() 632 geometry_info; in operator =() local 637 flags=ParseGeometry(point_,&geometry_info); in operator =() 638 _x=geometry_info.rho; in operator =() 639 _y=geometry_info.sigma; in operator =()
|