-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ImageIO task (a replacement for Image task)
- Loading branch information
Gintas Grigelionis
committed
Aug 12, 2018
1 parent
86bba86
commit ed567da
Showing
28 changed files
with
3,895 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
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. | ||
--> | ||
<!-- | ||
This POM has been created manually by the Ant Development Team. | ||
Please contact us if you are not satisfied with the data contained in this POM. | ||
URL : http://ant.apache.org | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<parent> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant-parent</artifactId> | ||
<relativePath>../pom.xml</relativePath> | ||
<version>1.10.6-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<url>http://ant.apache.org/</url> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant-imageio</artifactId> | ||
<version>1.10.6-SNAPSHOT</version> | ||
<name>Apache Ant + ImageIO</name> | ||
<description>imageio task and corresponding types.</description> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant</artifactId> | ||
<version>1.10.6-SNAPSHOT</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>org/apache/tools/ant/taskdefs/optional/image/ImageIOTask.java</include> | ||
<include>org/apache/tools/ant/types/optional/imageio/*</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<sourceDirectory>../../../../src/main</sourceDirectory> | ||
<testSourceDirectory>../../../../src/testcases</testSourceDirectory> | ||
<outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory> | ||
<testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory> | ||
<directory>../../../../target/${project.artifactId}</directory> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
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. | ||
--> | ||
|
||
<project name="image-test" default="main" basedir="."> | ||
|
||
<import file="../../../buildfiletest-base.xml"/> | ||
|
||
<target name="setUp"> | ||
<mkdir dir="${output}"/> | ||
<property name="src.dir" location="${basedir}/src"/> | ||
</target> | ||
|
||
<target name="main" depends="testSimpleScale"/> | ||
|
||
<!-- this should produce a single file in the dest dir --> | ||
<target name="testSimpleScale" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this should put some text in the log --> | ||
<target name="testEchoToLog" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this should produce a single file in the dest dir --> | ||
<target name="testFailOnError" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="yes"> | ||
<scale width="300" proportions="width"/> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this should produce a single file in the dest dir, overwriting any existing file --> | ||
<target name="testOverwriteTrue" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="yes" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this should produce a single file in the dest dir, overwriting any existing file --> | ||
<target name="testDrawOverwriteTrue" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="yes" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
<draw xloc="10" yloc="10"> | ||
<rectangle height="50" width="50" strokewidth="2"/> | ||
<text string="Test"/> | ||
</draw> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this should not overwrite the existing file --> | ||
<target name="testOverwriteFalse" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
</imageio> | ||
</target> | ||
|
||
<!-- this tests a special case of rotation --> | ||
<target name="testFlip" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="no"> | ||
<rotate angle="-180"/> | ||
</imageio> | ||
</target> | ||
|
||
<target name="testSimpleScaleWithMapper" depends="setUp"> | ||
<imageio includes="*.jpg" srcdir="${src.dir}" destdir="${output}" | ||
overwrite="no" failonerror="no"> | ||
<scale width="300" proportions="width"/> | ||
<globmapper from="*" to="scaled-*"/> | ||
</imageio> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.