Java tutorial
package apiserver.services.images.controllers.manipulations; /******************************************************************************* Copyright (c) 2013 Mike Nimer. This file is part of ApiServer Project. The ApiServer Project is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The ApiServer Project is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the ApiServer Project. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ import apiserver.MimeType; import apiserver.core.FileUploadHelper; import apiserver.model.Document; import apiserver.services.images.gateways.images.ImageDrawTextGateway; import apiserver.services.images.gateways.jobs.images.FileTextJob; import com.wordnik.swagger.annotations.Api; import com.wordnik.swagger.annotations.ApiParam; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.Map; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; /** * User: mnimer * Date: 9/18/12 */ @Controller @RestController @Api(value = "/api/image", description = "[IMAGE]") @RequestMapping("/api/image") public class TextController { @Autowired private ImageDrawTextGateway imageDrawTextGateway; @Autowired private FileUploadHelper fileUploadHelper; private @Value("${defaultReplyTimeout}") Integer defaultTimeout; /** * Overlay text onto an image * * @param documentId * @param text * @param color * @param fontSize * @param fontStyle * @param angle * @param x * @param y * @return * @throws InterruptedException * @throws java.util.concurrent.ExecutionException * @throws java.util.concurrent.TimeoutException * @throws java.io.IOException */ @RequestMapping(value = "/modify/{documentId}/text.{format}", method = { RequestMethod.GET }) public ResponseEntity<byte[]> drawTextByImage( @ApiParam(name = "documentId", required = true) @PathVariable(value = "documentId") String documentId, @ApiParam(name = "text", required = true) @RequestParam(required = true) String text, @ApiParam(name = "color", required = true) @RequestParam(required = true) String color, @ApiParam(name = "fontSize", required = true) @RequestParam(required = true) String fontSize, @ApiParam(name = "fontStyle", required = true) @RequestParam(required = true) String fontStyle, @ApiParam(name = "angle", required = true) @RequestParam(required = true) Integer angle, @ApiParam(name = "x", required = true) @RequestParam(required = true) Integer x, @ApiParam(name = "y", required = true) @RequestParam(required = true) Integer y, @ApiParam(name = "format", required = true, defaultValue = "jpg") @PathVariable(value = "format") String format ) throws InterruptedException, ExecutionException, TimeoutException, IOException { String _contentType = MimeType.getMimeType(format).contentType; if (!MimeType.getMimeType(format).isSupportedImage()) { return new ResponseEntity<byte[]>(HttpStatus.UNSUPPORTED_MEDIA_TYPE); } FileTextJob args = new FileTextJob(); args.setDocumentId(documentId); args.setFormat(format); args.setText(text); args.setColor(color); args.setFontSize(fontSize); args.setFontStyle(fontStyle); args.setAngle(angle); args.setX(x); args.setY(y); Future<Map> imageFuture = imageDrawTextGateway.imageDrawTextFilter(args); FileTextJob payload = (FileTextJob) imageFuture.get(defaultTimeout, TimeUnit.MILLISECONDS); //pass CF Response back to the client return payload.getHttpResponse(); } /** * Overlay text onto an image * * @param file * @param text * @param color * @param fontSize * @param fontStyle * @param angle * @param x * @param y * @return * @throws InterruptedException * @throws java.util.concurrent.ExecutionException * @throws java.util.concurrent.TimeoutException * @throws java.io.IOException */ @RequestMapping(value = "/modify/text", method = { RequestMethod.POST }) public ResponseEntity<byte[]> drawTextByImage(HttpServletRequest request, HttpServletResponse response, @ApiParam(name = "file", required = false) @RequestParam(value = "file", required = false) MultipartFile file, @ApiParam(name = "text", required = true) @RequestParam(required = true) String text, @ApiParam(name = "color", required = true) @RequestParam(required = true) String color, @ApiParam(name = "fontSize", required = true) @RequestParam(required = true) String fontSize, @ApiParam(name = "fontStyle", required = true) @RequestParam(required = true) String fontStyle, @ApiParam(name = "x", required = true) @RequestParam(required = true) Integer x, @ApiParam(name = "y", required = true) @RequestParam(required = true) Integer y, @ApiParam(name = "format", required = false) @RequestParam(value = "format", required = false) String format ) throws InterruptedException, ExecutionException, TimeoutException, IOException { Document _file = null; MimeType _outputMimeType = null; String _outputContentType = null; MultipartFile _mFile = fileUploadHelper.getFileFromRequest(file, request); _file = new Document(_mFile); _outputMimeType = fileUploadHelper.getOutputFileFormat(format, _file.getContentType()); _outputContentType = _outputMimeType.contentType; if (!_file.getContentType().isSupportedImage() || !_outputMimeType.isSupportedImage()) { return new ResponseEntity<>(HttpStatus.UNSUPPORTED_MEDIA_TYPE); } FileTextJob job = new FileTextJob(); job.setDocumentId(null); job.setDocument(_file); //job.getDocument().setContentType(MimeType.getMimeType(file.getContentType())); //job.getDocument().setFileName(file.getOriginalFilename()); job.setText(text); job.setColor(color); job.setFontSize(fontSize); job.setFontStyle(fontStyle); job.setX(x); job.setY(y); job.setFormat(format); Future<Map> imageFuture = imageDrawTextGateway.imageDrawTextFilter(job); FileTextJob payload = (FileTextJob) imageFuture.get(defaultTimeout, TimeUnit.MILLISECONDS); //pass CF Response back to the client return payload.getHttpResponse(); } }