File tree Expand file tree Collapse file tree 7 files changed +9
-8
lines changed
blitline-image-client-example
src/main/java/com/blitline/image/example
blitline-image-client-spring
src/main/java/com/blitline/image Expand file tree Collapse file tree 7 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.blitline</groupId >
6
6
<artifactId >blitline-java-parent</artifactId >
7
- <version >0.13.2 </version >
7
+ <version >0.13.3 </version >
8
8
</parent >
9
9
10
10
<artifactId >blitline-image-client-example</artifactId >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public void checkUrlProvider() {
45
45
/**
46
46
* Applies a canned function chain and saves the result with the {@code imageIdentifer} provided on the path.
47
47
*
48
- * @param imageIdentifer
48
+ * @param imageIdentifier
49
49
* the identifier to use for the Blitline job
50
50
* @param sourceImage
51
51
* the URL of the source image; defaults to the stock image of boys at the harbor
@@ -54,8 +54,7 @@ public void checkUrlProvider() {
54
54
* @return the results returned from dispatching the job
55
55
*/
56
56
@ RequestMapping ("/blitline/{imageIdentifier}" )
57
- public BlitlinePostResults runJob (
58
- @ PathVariable String imageIdentifier ,
57
+ public BlitlinePostResults runJob (@ PathVariable String imageIdentifier ,
59
58
@ RequestParam (defaultValue = BLITLINE_SAMPLE_IMAGE_URL ) String sourceImage ,
60
59
@ RequestParam (required = false ) String postbackUrl
61
60
) {
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.blitline</groupId >
6
6
<artifactId >blitline-java-parent</artifactId >
7
- <version >0.13.2 </version >
7
+ <version >0.13.3 </version >
8
8
</parent >
9
9
10
10
<artifactId >blitline-image-client-spring</artifactId >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.blitline</groupId >
6
6
<artifactId >blitline-java-parent</artifactId >
7
- <version >0.13.2 </version >
7
+ <version >0.13.3 </version >
8
8
</parent >
9
9
10
10
<artifactId >blitline-image-client</artifactId >
Original file line number Diff line number Diff line change @@ -230,6 +230,8 @@ public BlitlineImageJob identifyMetadataOnly() {
230
230
* Build the job from the specified source, but only attempt to read image metadata about the original.
231
231
* This method appends "-identify" to the {@code identifierPart} to form the image identifier.
232
232
*
233
+ * @param identifierPart the prefix to use for the image identifier
234
+ *
233
235
* @return a job specification that will only read and return metadata
234
236
*/
235
237
public BlitlineImageJob identifyMetadataOnly (String identifierPart ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public String getName() {
15
15
* @param threshold
16
16
* the sepia-tone threshold; 0.80 is a good default
17
17
* @return {@literal this}
18
- * @see <a href="http://www.imagemagick.org/script/command-line-options.php#sepia-tone>the ImageMagick documentation</a>
18
+ * @see <a href="http://www.imagemagick.org/script/command-line-options.php#sepia-tone" >the ImageMagick documentation</a>
19
19
*/
20
20
public SepiaTone threshold (double threshold ) {
21
21
params .put ("threshold" , threshold );
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >com.blitline</groupId >
5
5
<artifactId >blitline-java-parent</artifactId >
6
- <version >0.13.2 </version >
6
+ <version >0.13.3 </version >
7
7
<packaging >pom</packaging >
8
8
<name >Blitline Java client</name >
9
9
<description >Java client libraries for Blitline</description >
You can’t perform that action at this time.
0 commit comments