Home
last modified time | relevance | path

Searched refs:resizedWidth (Results 1 – 15 of 15) sorted by relevance

/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/image/sprite/
H A Dtiio_sprite.cpp80 int resizedWidth = finalWidth * m_scale / 100; in ~TLevelWriterSprite() local
107 spriteSheetWidth = horizDim * resizedWidth + totalHorizPadding; in ~TLevelWriterSprite()
117 spriteSheetWidth = resizedWidth + horizPadding; in ~TLevelWriterSprite()
121 spriteSheetWidth = m_imagesResized.size() * (resizedWidth + horizPadding); in ~TLevelWriterSprite()
149 painter.drawImage(column * resizedWidth + columnPadding, in ~TLevelWriterSprite()
170 out << "Individual Image Width: " << resizedWidth << "\n"; in ~TLevelWriterSprite()
173 << resizedWidth + horizPadding << "\n"; in ~TLevelWriterSprite()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/
H A Dclass_image.php144 * @param integer $resizedWidth
147 final public function getPropHeight($resizedWidth) { argument
148 $height = round(($this->height * $resizedWidth) / $this->width);
/dports/www/limesurvey/limesurvey/third_party/kcfinder/lib/
H A Dclass_image.php147 * @param integer $resizedWidth
150 final public function getPropHeight($resizedWidth) { argument
151 $height = round(($this->height * $resizedWidth) / $this->width);
/dports/graphics/zphoto/zphoto-1.2/
H A Dwxzphoto.cpp1112 int resizedWidth, resizedHeight; in ResizeImage() local
1115 resizedWidth = previewWidth; in ResizeImage()
1119 resizedWidth = (int)((double)bitmap.GetWidth() * scale); in ResizeImage()
1123 return new wxBitmap(image.Scale(resizedWidth, resizedHeight)); in ResizeImage()
/dports/science/orthanc-webviewer/OrthancWebViewer-2.7/ThirdPartyDownloads/Orthanc-1.8.1/OrthancFramework/Sources/Images/
H A DImageProcessing.cpp2557 unsigned int resizedWidth = static_cast<unsigned int>( in FitSizeKeepAspectRatio() local
2563 std::unique_ptr<ImageAccessor> resized(FitSize(source, resizedWidth, resizedHeight)); in FitSizeKeepAspectRatio()
2566 target->GetRegion(region, (width - resizedWidth) / 2, in FitSizeKeepAspectRatio()
2567 (height - resizedHeight) / 2, resizedWidth, resizedHeight); in FitSizeKeepAspectRatio()
/dports/science/orthanc-mysql/OrthancMySQL-4.3/MySQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/Images/
H A DImageProcessing.cpp2567 unsigned int resizedWidth = static_cast<unsigned int>( in FitSizeKeepAspectRatio() local
2573 std::unique_ptr<ImageAccessor> resized(FitSize(source, resizedWidth, resizedHeight)); in FitSizeKeepAspectRatio()
2576 target->GetRegion(region, (width - resizedWidth) / 2, in FitSizeKeepAspectRatio()
2577 (height - resizedHeight) / 2, resizedWidth, resizedHeight); in FitSizeKeepAspectRatio()
/dports/science/orthanc/Orthanc-1.9.7/OrthancFramework/Sources/Images/
H A DImageProcessing.cpp2594 unsigned int resizedWidth = static_cast<unsigned int>( in FitSizeKeepAspectRatio() local
2600 std::unique_ptr<ImageAccessor> resized(FitSize(source, resizedWidth, resizedHeight)); in FitSizeKeepAspectRatio()
2603 target->GetRegion(region, (width - resizedWidth) / 2, in FitSizeKeepAspectRatio()
2604 (height - resizedHeight) / 2, resizedWidth, resizedHeight); in FitSizeKeepAspectRatio()
/dports/science/orthanc-dicomweb/OrthancDicomWeb-1.7/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/Images/
H A DImageProcessing.cpp2567 unsigned int resizedWidth = static_cast<unsigned int>( in FitSizeKeepAspectRatio() local
2573 std::unique_ptr<ImageAccessor> resized(FitSize(source, resizedWidth, resizedHeight)); in FitSizeKeepAspectRatio()
2576 target->GetRegion(region, (width - resizedWidth) / 2, in FitSizeKeepAspectRatio()
2577 (height - resizedHeight) / 2, resizedWidth, resizedHeight); in FitSizeKeepAspectRatio()
/dports/science/orthanc-postgresql/OrthancPostgreSQL-4.0/PostgreSQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/Images/
H A DImageProcessing.cpp2567 unsigned int resizedWidth = static_cast<unsigned int>( in FitSizeKeepAspectRatio() local
2573 std::unique_ptr<ImageAccessor> resized(FitSize(source, resizedWidth, resizedHeight)); in FitSizeKeepAspectRatio()
2576 target->GetRegion(region, (width - resizedWidth) / 2, in FitSizeKeepAspectRatio()
2577 (height - resizedHeight) / 2, resizedWidth, resizedHeight); in FitSizeKeepAspectRatio()
/dports/graphics/photoflow/PhotoFlow-8472024f/src/rt/rtengine/
H A Dprocparams.h855 …void mapToResized(int resizedWidth, int resizedHeight, int scale, int &x1, int &x2, int &y1, int &…
/dports/graphics/rawtherapee/rawtherapee-5.8/rtengine/
H A Dprocparams.h819 …void mapToResized(int resizedWidth, int resizedHeight, int scale, int& x1, int& x2, int& y1, int& …
H A Dprocparams.cc1702 void CropParams::mapToResized(int resizedWidth, int resizedHeight, int scale, int& x1, int& x2, int… in mapToResized() argument
1704 x1 = 0, x2 = resizedWidth, y1 = 0, y2 = resizedHeight; in mapToResized()
1707 x1 = min(resizedWidth - 1, max(0, x / scale)); in mapToResized()
1709 x2 = min(resizedWidth, max(0, (x + w) / scale)); in mapToResized()
/dports/games/fheroes2/fheroes2-0.9.11/src/fheroes2/agg/
H A Dagg_image.cpp2561 … const int32_t resizedWidth = static_cast<int32_t>( originalIcn.width() * scaleFactorX + 0.5 ); in GetScaledICN() local
2564 if ( resizedIcn.width() != resizedWidth || resizedIcn.height() != resizedHeight ) { in GetScaledICN()
2565 resizedIcn.resize( resizedWidth, resizedHeight ); in GetScaledICN()
/dports/graphics/art/ART-1.9.3/rtengine/
H A Dprocparams.h807 …void mapToResized(int resizedWidth, int resizedHeight, int scale, int& x1, int& x2, int& y1, int& …
H A Dprocparams.cc2041 void CropParams::mapToResized(int resizedWidth, int resizedHeight, int scale, int& x1, int& x2, int… in mapToResized() argument
2043 x1 = 0, x2 = resizedWidth, y1 = 0, y2 = resizedHeight; in mapToResized()
2046 x1 = min(resizedWidth - 1, max(0, x / scale)); in mapToResized()
2048 x2 = min(resizedWidth, max(0, (x + w) / scale)); in mapToResized()