/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library 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 Lesser General Public License for more * details. */ package com.liferay.portal.kernel.servlet.taglib.ui; import com.liferay.portal.kernel.exception.ImageResolutionException; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.image.ImageBag; import com.liferay.portal.kernel.image.ImageToolUtil; import com.liferay.portal.kernel.json.JSONFactoryUtil; import com.liferay.portal.kernel.json.JSONObject; import java.awt.image.RenderedImage; import java.io.IOException; /** * @author Roberto Díaz */ public class ImageSelectorProcessor { public ImageSelectorProcessor(byte[] bytes) { _bytes = bytes; } public byte[] cropImage(String cropRegion) throws IOException, PortalException { JSONObject jsonObject = JSONFactoryUtil.createJSONObject(cropRegion); int height = jsonObject.getInt("height"); int width = jsonObject.getInt("width"); int x = jsonObject.getInt("x"); int y = jsonObject.getInt("y"); if ((x > 0) || (y > 0) || (width > 0) || (height > 0)) { ImageBag imageBag = ImageToolUtil.read(_bytes); RenderedImage renderedImage = imageBag.getRenderedImage(); renderedImage = ImageToolUtil.crop( renderedImage, height, width, x, y); return ImageToolUtil.getBytes(renderedImage, imageBag.getType()); } return _bytes; } public byte[] scaleImage(int width) throws ImageResolutionException, IOException { ImageBag imageBag = ImageToolUtil.read(_bytes); RenderedImage renderedImage = imageBag.getRenderedImage(); renderedImage = ImageToolUtil.scale(renderedImage, width); return ImageToolUtil.getBytes(renderedImage, imageBag.getType()); } private final byte[] _bytes; }