Package com.sparc.knappsack.exceptions

Examples of com.sparc.knappsack.exceptions.ImageException


                            .keepAspectRatio(true)
                            .useOriginalFormat()
                            .toOutputStream(outputStream);

                } else {
                    throw new ImageException(String.format("Image resize not necessary. Already %d x %d", originalImageWidth, originalImageHeight));
                }
            }
        } catch (IOException e) {
            throw new ImageException(e.getMessage(), e);
        } finally {
            closeInputStream(inputStream);
        }

        return outputStream;
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.exceptions.ImageException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.