Skip to content

Commit

Permalink
BATIK-1355: Missing arabic characters
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsteiner1984 committed Jun 18, 2024
1 parent 1291295 commit fa93a4e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,12 @@ public static boolean isLigature(char c) {

null, // 0x0628
null, // 0x0629
null, // 0x062A
null, // 0x062B
null, // 0x062C
null, // 0x062D
null, // 0x062E
null, // 0x062F
null, // 0x0630
null, // 0x0631
null, // 0x0632
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.svg;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import org.apache.batik.transcoder.TranscoderInput;
import org.apache.batik.transcoder.TranscoderOutput;
import org.apache.batik.transcoder.image.PNGTranscoder;
import org.junit.Assert;
import org.junit.Test;

public class ArabicCharactersTestCase {
@Test
public void testDoubleCharRemappings() throws Exception {
String text = "\u0634\u0627\u0631\u0639 \u0637\u064E\u0648\u0650\u064A \u0623\u0645 \u0627\u0644\u0638\u0651\u0650\u0628\u0627";
String svgContent = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" " +
"width=\"700\" height=\"500\" viewBox=\"0 0 700 500\">\n" +
"\t<g font-family=\"dialog\" font-size=\"35\" text-anchor=\"start\">\n" +
"\t\t<text fill=\"DarkRed\" x=\"5%\" y=\"10%\"\n" +
"\t\t> Arabic Shadda : " + text + "</text>\n" +
"\t</g>\n" +
"</svg>";
PNGTranscoder transcoder = new PNGTranscoder();
TranscoderInput input = new TranscoderInput(new ByteArrayInputStream(svgContent.getBytes()));
ByteArrayOutputStream ostream = new ByteArrayOutputStream();
TranscoderOutput output = new TranscoderOutput(ostream);
transcoder.transcode(input, output);
Assert.assertNotNull(ostream.toByteArray());
}
}

0 comments on commit fa93a4e

Please sign in to comment.