Home | History | Annotate | Download | only in pdf417

Lines Matching refs:outWidth

48                                   int32_t& outWidth,
70 int32_t width = outWidth;
72 outWidth = barcodeMatrix->getWidth();
75 if ((height > width) ^ (outWidth < outHeight)) {
76 rotateArray(originalScale, outHeight, outWidth);
79 outHeight = outWidth;
80 outWidth = temp;
82 int32_t scaleX = width / outWidth;
95 rotateArray(originalScale, outHeight, outWidth);
97 outHeight = outWidth;
98 outWidth = temp;
101 uint8_t* result = FX_Alloc2D(uint8_t, outHeight, outWidth);
102 FXSYS_memcpy(result, originalScale.GetData(), outHeight * outWidth);