Home | History | Annotate | Download | only in pdf417

Lines Matching refs:outHeight

49                                   int32_t& outHeight,
71 int32_t height = outHeight;
73 outHeight = barcodeMatrix->getHeight();
75 if ((height > width) ^ (outWidth < outHeight)) {
76 rotateArray(originalScale, outHeight, outWidth);
78 int32_t temp = outHeight;
79 outHeight = outWidth;
83 int32_t scaleY = height / outHeight;
95 rotateArray(originalScale, outHeight, outWidth);
96 int32_t temp = outHeight;
97 outHeight = outWidth;
101 uint8_t* result = FX_Alloc2D(uint8_t, outHeight, outWidth);
102 FXSYS_memcpy(result, originalScale.GetData(), outHeight * outWidth);