mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Issue 1263 small fix
git-svn-id: https://zxing.googlecode.com/svn/trunk@2290 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
6ea8a2e6b0
commit
785197a625
|
@ -88,7 +88,7 @@ public final class PDF417Writer implements Writer {
|
|||
Map<EncodeHintType, Object> hints = new EnumMap<EncodeHintType,Object>(EncodeHintType.class);
|
||||
hints.put(EncodeHintType.PDF417_COMPACT, compact);
|
||||
hints.put(EncodeHintType.PDF417_COMPACTION, compaction);
|
||||
hints.put(EncodeHintType.PDF417_DIMENSIONS, new Dimensions(maxCols, minCols, maxRows, minRows));
|
||||
hints.put(EncodeHintType.PDF417_DIMENSIONS, new Dimensions(minCols, maxCols, minRows, maxRows));
|
||||
return encode(contents, format, width, height, hints);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue