Home
last modified time | relevance | path

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

/external/ImageMagick/coders/
Djbig.c519 x_resolution, in WriteJBIGImage() local
522 x_resolution=640; in WriteJBIGImage()
533 x_resolution=geometry_info.rho; in WriteJBIGImage()
536 y_resolution=x_resolution; in WriteJBIGImage()
540 x_resolution=(size_t) (100.0*2.54*x_resolution+0.5)/100.0; in WriteJBIGImage()
543 (void) jbg_enc_lrlmax(&jbig_info,(unsigned long) x_resolution, in WriteJBIGImage()
Demf.c485 x_resolution; in ReadEMFImage() local
488 x_resolution=DefaultResolution; in ReadEMFImage()
497 x_resolution=image->resolution.x; in ReadEMFImage()
499 x_resolution*=CENTIMETERS_INCH; in ReadEMFImage()
503 x_resolution+0.5); in ReadEMFImage()
Dpict.c1607 x_resolution, in WritePICTImage() local
1697 x_resolution=image->resolution.x != 0.0 ? image->resolution.x : in WritePICTImage()
1746 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1852 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1892 (void) WriteBlobMSBShort(image,(unsigned short) (x_resolution+0.5)); in WritePICTImage()
Dpsd.c2500 x_resolution, in WriteResolutionResourceBlock() local
2508 x_resolution=2.54*65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
2514 x_resolution=65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
2522 (void) WriteBlobMSBLong(image,(unsigned int) (x_resolution+0.5)); in WriteResolutionResourceBlock()
Dtiff.c1081 x_resolution, in ReadTIFFImage() local
1335 if ((TIFFGetFieldDefaulted(tiff,TIFFTAG_XRESOLUTION,&x_resolution) == 1) && in ReadTIFFImage()
1338 image->resolution.x=x_resolution; in ReadTIFFImage()
Dmsl.c5269 x_resolution, in MSLStartElement() local
5280 x_resolution=DefaultResolution; in MSLStartElement()
5300 x_resolution=geometry_info.rho; in MSLStartElement()
5312 x_resolution=StringToDouble(value,(char **) NULL); in MSLStartElement()
5349 width=(size_t) (x_resolution*msl_info->image[n]->columns/ in MSLStartElement()
Dpng.c1982 x_resolution, in ReadOnePNGImage() local
2689 x_resolution=0; in ReadOnePNGImage()
2697 (void) png_get_pHYs(ping,ping_info,&x_resolution,&y_resolution, in ReadOnePNGImage()
2699 image->resolution.x=(double) x_resolution; in ReadOnePNGImage()
2705 image->resolution.x=(double) x_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
2790 (void) FormatLocaleString(density,MagickPathExtent,"%gx%g",x_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
10430 wand->images->resolution.x=x_resolution; in MagickSetImageResolution()
Ddrawing-wand.c4808 const double x_resolution,const double y_resolution) in DrawSetFontResolution() argument
4817 (void) FormatLocaleString(density,MagickPathExtent,"%.20gx%.20g",x_resolution, in DrawSetFontResolution()
/external/ImageMagick/MagickCore/
Dresize.c2265 MagickExport Image *ResampleImage(const Image *image,const double x_resolution, in ResampleImage() argument
2286 width=(size_t) (x_resolution*image->columns/(image->resolution.x == 0.0 ? in ResampleImage()
2293 resample_image->resolution.x=x_resolution; in ResampleImage()
/external/ImageMagick/Magick++/lib/
DImage.cpp681 x_resolution=72, in density() local
685 x_resolution=constImage()->resolution.x; in density()
690 return(Point(x_resolution,y_resolution)); in density()