View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.imaging.formats.tiff.taginfos;
18  
19  import java.nio.ByteOrder;
20  import java.nio.charset.StandardCharsets;
21  
22  import org.apache.commons.imaging.ImagingException;
23  import org.apache.commons.imaging.common.Allocator;
24  import org.apache.commons.imaging.formats.tiff.constants.TiffDirectoryType;
25  import org.apache.commons.imaging.formats.tiff.fieldtypes.AbstractFieldType;
26  
27  public class TagInfoAscii extends TagInfo {
28      public TagInfoAscii(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
29          super(name, tag, AbstractFieldType.ASCII, length, directoryType);
30      }
31  
32      public byte[] encodeValue(final ByteOrder byteOrder, final String... values) throws ImagingException {
33          return AbstractFieldType.ASCII.writeData(values, byteOrder);
34      }
35  
36      public String[] getValue(final ByteOrder byteOrder, final byte[] bytes) {
37          int nullCount = 0;
38          for (int i = 0; i < bytes.length - 1; i++) {
39              if (bytes[i] == 0) {
40                  nullCount++;
41              }
42          }
43          final String[] strings = Allocator.array(nullCount + 1, String[]::new, 24);
44          int stringsAdded = 0;
45          strings[0] = ""; // if we have a 0 length string
46          int nextStringPos = 0;
47          // According to the Exiftool FAQ, [BROKEN URL] http://www.metadataworkinggroup.org
48          // specifies that the TIFF ASCII fields are actually UTF-8.
49          // Exiftool however allows you to configure the charset used.
50          for (int i = 0; i < bytes.length; i++) {
51              if (bytes[i] == 0) {
52                  final String string = new String(bytes, nextStringPos, i - nextStringPos, StandardCharsets.UTF_8);
53                  strings[stringsAdded++] = string;
54                  nextStringPos = i + 1;
55              }
56          }
57          if (nextStringPos < bytes.length) {
58              // Buggy file, string wasn't null terminated
59              final String string = new String(bytes, nextStringPos, bytes.length - nextStringPos, StandardCharsets.UTF_8);
60              strings[stringsAdded++] = string;
61          }
62          return strings;
63      }
64  }