001/*
002 * (C) Copyright 2007 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Nuxeo - initial API and implementation
018 *
019 * $Id$
020 */
021package org.nuxeo.ecm.platform.picture.api;
022
023/**
024 * @author Max Stepanov
025 */
026public class ImagingConvertConstants {
027
028    /** Operations */
029    public static final String OPERATION_RESIZE = "pictureResize";
030
031    public static final String OPERATION_ROTATE = "pictureRotation";
032
033    public static final String OPERATION_CROP = "pictureCrop";
034
035    /** Operation specific options */
036    public static final String OPTION_RESIZE_WIDTH = "width";
037
038    public static final String OPTION_RESIZE_HEIGHT = "height";
039
040    public static final String OPTION_RESIZE_DEPTH = "depth";
041
042    public static final String OPTION_CROP_X = "x";
043
044    public static final String OPTION_CROP_Y = "y";
045
046    public static final String OPTION_ROTATE_ANGLE = "angle";
047
048    public static final String CONVERSION_FORMAT = "conversionFormat";
049
050    public static final String JPEG_CONVERSATION_FORMAT = "jpg";
051
052    private ImagingConvertConstants() {
053    }
054
055}