Lines Matching refs:Height

361 		nTotalHeight = aSize100.Height() - pAttr->GetTopCrop() - pAttr->GetBottomCrop();  in ImplGetCropParams()
363 if( aSize100.Width() > 0 && aSize100.Height() > 0 && nTotalWidth > 0 && nTotalHeight > 0 ) in ImplGetCropParams()
373 fScale = (double) aSize100.Height() / nTotalHeight; in ImplGetCropParams()
375 nNewBottom = nNewTop + FRound( aSize100.Height() * fScale ) - 1; in ImplGetCropParams()
377 fScale = (double) rSz.Height() / aSize100.Height(); in ImplGetCropParams()
379 rSz.Height() = FRound( ( nNewBottom - nNewTop + 1 ) * fScale ); in ImplGetCropParams()
702 if( aSz.Height() < 0L ) in Draw()
704 aPt.Y() += aSz.Height() + 1; in Draw()
705 aSz.Height() = -aSz.Height(); in Draw()
773 rSz.Height() > 0L && in DrawWithPDFHandling()
820 if( pOut == NULL || rSize.Width() == 0 || rSize.Height() == 0 ) in DrawTiled()
828 … ::std::max( 1L, pOut->LogicToPixel( rSize, aOutMapMode ).Height() ) ); in DrawTiled()
833 while (((sal_Int64)rSize.Height() * nTileCacheSize1D) > SAL_MAX_UINT16) in DrawTiled()
1001 aMtfMapMode.GetOrigin().Y() + aCropLeftTop.Height(), in GetTransformedGraphic()
1003 … aMtfMapMode.GetOrigin().Y() + aSrcSize.Height() - aCropRightBottom.Height() ); in GetTransformedGraphic()
1010 …(double)rDestSize.Height() / (aSrcSize.Height() - aCropLeftTop.Height() - aCropRightBottom.Height(… in GetTransformedGraphic()
1016 …(long)((double)rDestSize.Height() * (1.0 + (aCropLeftTop.Height() + aCropRightBottom.Height()) / a… in GetTransformedGraphic()
1021 …Origin().Y() + rDestSize.Height() * aCropLeftTop.Height() / (aSrcSize.Height() - aCropLeftTop.Heig… in GetTransformedGraphic()
1028 …action( rDestSize.Width(), aSrcSize.Width() ), Fraction( rDestSize.Height(), aSrcSize.Height() ) ); in GetTransformedGraphic()
1070 …) != aBitmapEx.GetSizePixel().Width() || aSrcSizePixel.Height() != aBitmapEx.GetSizePixel().Height in GetTransformedGraphic()
1083 … const double fFactorY((double)aBitmapEx.GetSizePixel().Height() / aSrcSizePixel.Height()); in GetTransformedGraphic()
1086 aCropLeftTop.Height() = basegfx::fround(aCropLeftTop.Height() * fFactorY); in GetTransformedGraphic()
1088 aCropRightBottom.Height() = basegfx::fround(aCropRightBottom.Height() * fFactorY); in GetTransformedGraphic()
1094 aCropRect = Rectangle( aCropLeftTop.Width(), aCropLeftTop.Height(), in GetTransformedGraphic()
1096 aSrcSizePixel.Height() - aCropRightBottom.Height() ); in GetTransformedGraphic()
1129 aCropLeftTop.Height() < 0 || in GetTransformedGraphic()
1131 aCropRightBottom.Height() < 0 ) in GetTransformedGraphic()
1136 aNewSize.Height() += aCropRightBottom.Height() < 0 ? -aCropRightBottom.Height() : 0; in GetTransformedGraphic()
1137 aNewSize.Height() += aCropLeftTop.Height() < 0 ? -aCropLeftTop.Height() : 0; in GetTransformedGraphic()
1144 aCropLeftTop.Height() < 0 ) in GetTransformedGraphic()
1147 aCropLeftTop.Height() < 0 ? -aCropLeftTop.Height() : 0 ); in GetTransformedGraphic()
1477 const double fDivY(aBitmapSize.Height() - fTopCrop - fBottomCrop); in calculateCropScaling()