Skip to content

Commit

Permalink
Fix logic for 1 pixel high/wide preview images (Fixes #493)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhillman authored and kdt3rd committed Jul 25, 2019
1 parent 6bb3671 commit 7450450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenEXR/exrmakepreview/makePreview.cpp
Expand Up @@ -120,8 +120,8 @@ generatePreview (const char inFileName[],
previewHeight = max (int (h / (w * a) * previewWidth + .5f), 1);
previewPixels.resizeErase (previewHeight, previewWidth);

float fx = (previewWidth > 0)? (float (w - 1) / (previewWidth - 1)): 1;
float fy = (previewHeight > 0)? (float (h - 1) / (previewHeight - 1)): 1;
float fx = (previewWidth > 1)? (float (w - 1) / (previewWidth - 1)): 1;
float fy = (previewHeight > 1)? (float (h - 1) / (previewHeight - 1)): 1;
float m = Math<float>::pow (2.f, IMATH_NAMESPACE::clamp (exposure + 2.47393f, -20.f, 20.f));

for (int y = 0; y < previewHeight; ++y)
Expand Down

0 comments on commit 7450450

Please sign in to comment.