Home
last modified time | relevance | path

Searched refs:y_resolution (Results 1 – 12 of 12) sorted by relevance

/external/ImageMagick/coders/
Djbig.c520 y_resolution; in WriteJBIGImage() local
523 y_resolution=480; in WriteJBIGImage()
534 y_resolution=geometry_info.sigma; in WriteJBIGImage()
536 y_resolution=x_resolution; in WriteJBIGImage()
541 y_resolution=(size_t) (100.0*2.54*y_resolution+0.5)/100.0; in WriteJBIGImage()
544 (unsigned long) y_resolution); in WriteJBIGImage()
Demf.c484 y_resolution, in ReadEMFImage() local
487 y_resolution=DefaultResolution; in ReadEMFImage()
491 y_resolution=image->resolution.y; in ReadEMFImage()
493 y_resolution*=CENTIMETERS_INCH; in ReadEMFImage()
501 image->rows=(size_t) ((height/1000.0/CENTIMETERS_INCH)*y_resolution+0.5); in ReadEMFImage()
Dpict.c1608 y_resolution; in WritePICTImage() local
1699 y_resolution=image->resolution.y != 0.0 ? image->resolution.y : in WritePICTImage()
1748 (void) WriteBlobMSBShort(image,(unsigned short) y_resolution); in WritePICTImage()
1854 (void) WriteBlobMSBShort(image,(unsigned short) y_resolution); in WritePICTImage()
1894 (void) WriteBlobMSBShort(image,(unsigned short) (y_resolution+0.5)); in WritePICTImage()
Dpsd.c2501 y_resolution; in WriteResolutionResourceBlock() local
2509 y_resolution=2.54*65536.0*image->resolution.y+0.5; in WriteResolutionResourceBlock()
2515 y_resolution=65536.0*image->resolution.y+0.5; in WriteResolutionResourceBlock()
2525 (void) WriteBlobMSBLong(image,(unsigned int) (y_resolution+0.5)); in WriteResolutionResourceBlock()
Dtiff.c1082 y_resolution; in ReadTIFFImage() local
1336 (TIFFGetFieldDefaulted(tiff,TIFFTAG_YRESOLUTION,&y_resolution) == 1)) in ReadTIFFImage()
1339 image->resolution.y=y_resolution; in ReadTIFFImage()
Dmsl.c5270 y_resolution; in MSLStartElement() local
5281 y_resolution=DefaultResolution; in MSLStartElement()
5301 y_resolution=geometry_info.sigma; in MSLStartElement()
5323 y_resolution=StringToDouble(value,(char **) NULL); in MSLStartElement()
5352 height=(size_t) (y_resolution*msl_info->image[n]->rows/ in MSLStartElement()
Dpng.c1983 y_resolution; in ReadOnePNGImage() local
2690 y_resolution=0; in ReadOnePNGImage()
2697 (void) png_get_pHYs(ping,ping_info,&x_resolution,&y_resolution, in ReadOnePNGImage()
2700 image->resolution.y=(double) y_resolution; in ReadOnePNGImage()
2706 image->resolution.y=(double) y_resolution/100.0; in ReadOnePNGImage()
2712 (double) x_resolution,(double) y_resolution,unit_type); in ReadOnePNGImage()
3891 (double) x_resolution,(double) y_resolution, unit_type); in ReadOnePNGImage()
/external/ImageMagick/MagickWand/
Dmagick-property.c2780 const double x_resolution,const double y_resolution) in MagickSetResolution() argument
2791 y_resolution); in MagickSetResolution()
Dmagick-image.c8431 const double x_resolution,const double y_resolution,const FilterType filter) in MagickResampleImage() argument
8442 resample_image=ResampleImage(wand->images,x_resolution,y_resolution,filter, in MagickResampleImage()
10422 const double x_resolution,const double y_resolution) in MagickSetImageResolution() argument
10431 wand->images->resolution.y=y_resolution; in MagickSetImageResolution()
Ddrawing-wand.c4808 const double x_resolution,const double y_resolution) in DrawSetFontResolution() argument
4818 y_resolution); in DrawSetFontResolution()
/external/ImageMagick/MagickCore/
Dresize.c2266 const double y_resolution,const FilterType filter,ExceptionInfo *exception) in ResampleImage() argument
2288 height=(size_t) (y_resolution*image->rows/(image->resolution.y == 0.0 ? in ResampleImage()
2294 resample_image->resolution.y=y_resolution; in ResampleImage()
/external/ImageMagick/Magick++/lib/
DImage.cpp682 y_resolution=72; in density() local
688 y_resolution=constImage()->resolution.y; in density()
690 return(Point(x_resolution,y_resolution)); in density()