Home
last modified time | relevance | path

Searched refs:eff_image (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/digikam/digikam-7.4.0/core/libs/transitionmngr/
H A Deffectmngr_p_pan.cpp35 QRectF fRect(eff_image.rect()); in effectKenBurnsPanLR()
39 double nx = eff_step * ((eff_image.width() - eff_image.width() * 0.8) / eff_imgFrames); in effectKenBurnsPanLR()
40 double ny = (eff_image.height() - eff_image.height() * 0.8) / 2.0; in effectKenBurnsPanLR()
65 QRectF fRect(eff_image.rect()); in effectKenBurnsPanRL()
69 double nx = eff_step * ((eff_image.width() - eff_image.width() * 0.8) / eff_imgFrames); in effectKenBurnsPanRL()
70 double ny = (eff_image.height() - eff_image.height() * 0.8) / 2.0; in effectKenBurnsPanRL()
95 QRectF fRect(eff_image.rect()); in effectKenBurnsPanTB()
99 double nx = (eff_image.width() - eff_image.width() * 0.8) / 2.0; in effectKenBurnsPanTB()
100 double ny = eff_step * ((eff_image.height() - eff_image.height() * 0.8) / eff_imgFrames); in effectKenBurnsPanTB()
129 double nx = (eff_image.width() - eff_image.width() * 0.8) / 2.0; in effectKenBurnsPanBT()
[all …]
H A Deffectmngr_p_zoom.cpp35 QRectF fRect(eff_image.rect()); in effectKenBurnsZoomIn()
38 double nx = eff_step * ((eff_image.width() - eff_image.width() * 0.8) / eff_imgFrames); in effectKenBurnsZoomIn()
39 double ny = nx / ((double)eff_image.width() / (double)eff_image.height()); in effectKenBurnsZoomIn()
41 fRect.setBottomRight(QPointF((double)eff_image.width()-nx, (double)eff_image.height()-ny)); in effectKenBurnsZoomIn()
62 QRectF fRect(eff_image.rect()); in effectKenBurnsZoomOut()
65 double nx = eff_step * ((eff_image.width() - eff_image.width() * 0.8) / eff_imgFrames); in effectKenBurnsZoomOut()
66 double ny = nx / ((double)eff_image.width() / (double)eff_image.height()); in effectKenBurnsZoomOut()
68 fRect.setBottomRight(QPointF((double)eff_image.width()-nx, (double)eff_image.height()-ny)); in effectKenBurnsZoomOut()
H A Deffectmngr_p.cpp52 QImage kbImg = eff_image.copy(area.toAlignedRect()) in updateCurrentFrame()
66 eff_curFrame = eff_image; in effectNone()
H A Deffectmngr.cpp75 d->eff_image = img; in setImage()
87 d->eff_curFrame = d->eff_image; in currentFrame()
H A Deffectmngr_p.h69 QImage eff_image; variable