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    /**
036     * @since 8.4
037     */
038    public static final String OPERATION_CONVERT_TO_PDF = "pictureConvertToPDF";
039
040    /** Operation specific options */
041    public static final String OPTION_RESIZE_WIDTH = "width";
042
043    public static final String OPTION_RESIZE_HEIGHT = "height";
044
045    public static final String OPTION_RESIZE_DEPTH = "depth";
046
047    public static final String OPTION_CROP_X = "x";
048
049    public static final String OPTION_CROP_Y = "y";
050
051    public static final String OPTION_ROTATE_ANGLE = "angle";
052
053    public static final String CONVERSION_FORMAT = "conversionFormat";
054
055    public static final String JPEG_CONVERSATION_FORMAT = "jpg";
056
057    private ImagingConvertConstants() {
058    }
059
060}