Home | History | Annotate | Download | only in MagickCore

Lines Matching defs:scale_factor

2912     scale_factor;
3237 scale_factor=(double) width/windows->image.ximage->width;
3239 chop_info.x=(ssize_t) (scale_factor*chop_info.x+0.5);
3240 chop_info.width=(unsigned int) (scale_factor*chop_info.width+0.5);
3241 scale_factor=(double) height/windows->image.ximage->height;
3243 chop_info.y=(ssize_t) (scale_factor*chop_info.y+0.5);
3244 chop_info.height=(unsigned int) (scale_factor*chop_info.height+0.5);
3970 scale_factor;
4287 scale_factor=(double) width/windows->image.ximage->width;
4289 composite_info.x=(ssize_t) (scale_factor*composite_info.x+0.5);
4290 composite_info.width=(unsigned int) (scale_factor*composite_info.width+0.5);
4291 scale_factor=(double) height/windows->image.ximage->height;
4293 composite_info.y=(ssize_t) (scale_factor*composite_info.y+0.5);
4294 composite_info.height=(unsigned int) (scale_factor*composite_info.height+0.5);
4642 scale_factor;
5340 scale_factor=(double) width/windows->image.ximage->width;
5342 crop_info.x=(ssize_t) (scale_factor*crop_info.x+0.5);
5343 crop_info.width=(unsigned int) (scale_factor*crop_info.width+0.5);
5344 scale_factor=(double) height/windows->image.ximage->height;
5346 crop_info.y=(ssize_t) (scale_factor*crop_info.y+0.5);
5347 crop_info.height=(unsigned int) (scale_factor*crop_info.height+0.5);
6383 scale_factor;
6391 scale_factor=(double) windows->pan.width/windows->image.ximage->width;
6392 highlight_info.x=(ssize_t) (scale_factor*windows->image.x+0.5);
6393 highlight_info.width=(unsigned int) (scale_factor*windows->image.width+0.5);
6394 scale_factor=(double)
6396 highlight_info.y=(ssize_t) (scale_factor*windows->image.y+0.5);
6397 highlight_info.height=(unsigned int) (scale_factor*windows->image.height+0.5);
10679 scale_factor;
10818 scale_factor=(double) windows->image.ximage->width/width;
10819 paste_info.width=(unsigned int) (scale_factor*paste_image->columns+0.5);
10820 scale_factor=(double) windows->image.ximage->height/height;
10821 paste_info.height=(unsigned int) (scale_factor*paste_image->rows+0.5);
10953 scale_factor=(double) width/windows->image.ximage->width;
10955 paste_info.x=(ssize_t) (scale_factor*paste_info.x+0.5);
10956 paste_info.width=(unsigned int) (scale_factor*paste_info.width+0.5);
10957 scale_factor=(double) height/windows->image.ximage->height;
10959 paste_info.y=(ssize_t) (scale_factor*paste_info.y*scale_factor+0.5);
10960 paste_info.height=(unsigned int) (scale_factor*paste_info.height+0.5);
11331 scale_factor;
11676 scale_factor=(double) width/windows->image.ximage->width;
11678 crop_info.x=(ssize_t) (scale_factor*crop_info.x+0.5);
11679 crop_info.width=(unsigned int) (scale_factor*crop_info.width+0.5);
11680 scale_factor=(double)
11683 crop_info.y=(ssize_t) (scale_factor*crop_info.y+0.5);
11685 (scale_factor*crop_info.height+0.5);
13009 scale_factor;
13039 scale_factor=(double) width/windows->image.ximage->width;
13041 x+=(int) (scale_factor*crop_info->x+0.5);
13042 width=(unsigned int) (scale_factor*crop_info->width+0.5);
13045 scale_factor=(double) height/windows->image.ximage->height;
13047 y+=(int) (scale_factor*crop_info->y+0.5);
13048 height=(unsigned int) (scale_factor*crop_info->height+0.5);
13134 scale_factor;
13156 scale_factor=(double) width/windows->image.ximage->width;
13158 event->xbutton.x=(int) (scale_factor*event->xbutton.x+x+0.5);
13159 scale_factor=(double) height/windows->image.ximage->height;
13161 event->xbutton.y=(int) (scale_factor*event->xbutton.y+y+0.5);