Code39Writer.java (zxing-zxing-3.4.0) | : | Code39Writer.java (zxing-zxing-3.4.1) | ||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
* Unless required by applicable law or agreed to in writing, software | * Unless required by applicable law or agreed to in writing, software | |||
* distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | |||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
* See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | |||
* limitations under the License. | * limitations under the License. | |||
*/ | */ | |||
package com.google.zxing.oned; | package com.google.zxing.oned; | |||
import com.google.zxing.BarcodeFormat; | import com.google.zxing.BarcodeFormat; | |||
import com.google.zxing.EncodeHintType; | ||||
import com.google.zxing.WriterException; | ||||
import com.google.zxing.common.BitMatrix; | import com.google.zxing.common.BitMatrix; | |||
import java.util.Map; | import java.util.Collection; | |||
import java.util.Collections; | ||||
/** | /** | |||
* This object renders a CODE39 code as a {@link BitMatrix}. | * This object renders a CODE39 code as a {@link BitMatrix}. | |||
* | * | |||
* @author erik.barbara@gmail.com (Erik Barbara) | * @author erik.barbara@gmail.com (Erik Barbara) | |||
*/ | */ | |||
public final class Code39Writer extends OneDimensionalCodeWriter { | public final class Code39Writer extends OneDimensionalCodeWriter { | |||
@Override | @Override | |||
public BitMatrix encode(String contents, | protected Collection<BarcodeFormat> getSupportedWriteFormats() { | |||
BarcodeFormat format, | return Collections.singleton(BarcodeFormat.CODE_39); | |||
int width, | ||||
int height, | ||||
Map<EncodeHintType,?> hints) throws WriterException { | ||||
if (format != BarcodeFormat.CODE_39) { | ||||
throw new IllegalArgumentException("Can only encode CODE_39, but got " + f | ||||
ormat); | ||||
} | ||||
return super.encode(contents, format, width, height, hints); | ||||
} | } | |||
@Override | @Override | |||
public boolean[] encode(String contents) { | public boolean[] encode(String contents) { | |||
int length = contents.length(); | int length = contents.length(); | |||
if (length > 80) { | if (length > 80) { | |||
throw new IllegalArgumentException( | throw new IllegalArgumentException( | |||
"Requested contents should be less than 80 digits long, but got " + le ngth); | "Requested contents should be less than 80 digits long, but got " + le ngth); | |||
} | } | |||
End of changes. 3 change blocks. | ||||
13 lines changed or deleted | 4 lines changed or added |