Home
last modified time | relevance | path

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

/external/ImageMagick/coders/
Djbig.c521 x_resolution, in WriteJBIGImage() local
524 x_resolution=640; in WriteJBIGImage()
535 x_resolution=geometry_info.rho; in WriteJBIGImage()
538 y_resolution=x_resolution; in WriteJBIGImage()
542 x_resolution=(size_t) (100.0*2.54*x_resolution+0.5)/100.0; in WriteJBIGImage()
545 (void) jbg_enc_lrlmax(&jbig_info,(unsigned long) x_resolution, in WriteJBIGImage()
Demf.c489 x_resolution; in ReadEMFImage() local
492 x_resolution=DefaultResolution; in ReadEMFImage()
501 x_resolution=image->resolution.x; in ReadEMFImage()
503 x_resolution*=CENTIMETERS_INCH; in ReadEMFImage()
507 x_resolution+0.5); in ReadEMFImage()
Dpict.c1671 x_resolution, in WritePICTImage() local
1761 x_resolution=0.0; in WritePICTImage()
1766 x_resolution=image->resolution.x; in WritePICTImage()
1770 x_resolution*=2.54; in WritePICTImage()
1832 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1938 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1979 (void) WriteBlobMSBShort(image,(unsigned short) (x_resolution+0.5)); in WritePICTImage()
Dpsd.c3292 x_resolution, in WriteResolutionResourceBlock() local
3300 x_resolution=2.54*65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
3306 x_resolution=65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
3314 (void) WriteBlobMSBLong(image,(unsigned int) (x_resolution+0.5)); in WriteResolutionResourceBlock()
Dtiff.c1209 x_resolution, in ReadTIFFImage() local
1493 if ((TIFFGetFieldDefaulted(tiff,TIFFTAG_XRESOLUTION,&x_resolution,sans) == 1) && in ReadTIFFImage()
1496 image->resolution.x=x_resolution; in ReadTIFFImage()
Dmsl.c5284 x_resolution, in MSLStartElement() local
5295 x_resolution=DefaultResolution; in MSLStartElement()
5317 x_resolution=geometry_info.rho; in MSLStartElement()
5329 x_resolution=StringToDouble(value,(char **) NULL); in MSLStartElement()
5366 width=(size_t) (x_resolution*msl_info->image[n]->columns/ in MSLStartElement()
Dpng.c2218 x_resolution, in ReadOnePNGImage() local
2955 x_resolution=0; in ReadOnePNGImage()
2963 (void) png_get_pHYs(ping,ping_info,&x_resolution,&y_resolution, in ReadOnePNGImage()
2965 image->resolution.x=(double) x_resolution; in ReadOnePNGImage()
2971 image->resolution.x=(double) x_resolution/100.0; in ReadOnePNGImage()
2978 (double) x_resolution,(double) y_resolution,unit_type); in ReadOnePNGImage()
4181 (double) x_resolution,(double) y_resolution, unit_type); in ReadOnePNGImage()
/external/ImageMagick/MagickWand/
Dmagick-property.c2733 const double x_resolution,const double y_resolution) in MagickSetResolution() argument
2742 (void) FormatLocaleString(density,MagickPathExtent,"%gx%g",x_resolution, in MagickSetResolution()
Dmagick-image.c9193 const double x_resolution,const double y_resolution,const FilterType filter) in MagickResampleImage() argument
9204 resample_image=ResampleImage(wand->images,x_resolution,y_resolution,filter, in MagickResampleImage()
11239 const double x_resolution,const double y_resolution) in MagickSetImageResolution() argument
11247 wand->images->resolution.x=x_resolution; in MagickSetImageResolution()
Ddrawing-wand.c4891 const double x_resolution,const double y_resolution) in DrawSetFontResolution() argument
4900 (void) FormatLocaleString(density,MagickPathExtent,"%.20gx%.20g",x_resolution, in DrawSetFontResolution()
/external/ImageMagick/MagickCore/
Dresize.c3145 MagickExport Image *ResampleImage(const Image *image,const double x_resolution, in ResampleImage() argument
3166 width=(size_t) (x_resolution*image->columns/(image->resolution.x == 0.0 ? in ResampleImage()
3173 resample_image->resolution.x=x_resolution; in ResampleImage()
/external/ImageMagick/Magick++/lib/
DImage.cpp676 x_resolution=72, in density() local
680 x_resolution=constImage()->resolution.x; in density()
685 return(Point(x_resolution,y_resolution)); in density()