Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Miles J Uploader plugin http://milesj.me/code/cakephp/uploader with CakePhP everything works great, but i have problem to store new height and width of image after resizing. With width and height metaData option the original width and height is saved.

Edit: highlighted code

<?php
    public $actsAs = array(
        'Uploader.Attachment' => array(
            'logo' => array(
//          'name'      => 'formatFileName',    // Name of the function to use to format filenames
//          'baseDir'   => '',          // See UploaderComponent::$baseDir
                'uploadDir' => 'upload/sponsors', // See UploaderComponent::$uploadDir
                'dbColumn' => 'logo', // The database column name to save the path to
//          'importFrom'    => '',          // Path or URL to import file
//          'defaultPath'   => '',          // Default file path if no upload present
                'maxNameLength' => 200, // Max file name length
                'overwrite' => false, // Overwrite file with same name if it exists
                'stopSave' => true, // Stop the model save() if upload fails
                'allowEmpty' => true, // Allow an empty file upload to continue
                'transforms' => array(
                    array('method' => 'resize', 'width' => 100, 'height' => 40, 'dbColumn' => 'logo')
                ), // What transformations to do on images: scale, resize, etc
//          's3'        => array(),     // Array of Amazon S3 settings
            'metaColumns'   => array(       // Mapping of meta data to database fields
//              'ext' => '',
//              'type' => '',
//              'size' => '',
//              'group' => '',
                'width' => 'width',
                'height' => 'height',
//              'filesize' => ''
            )
            ),
            'gray' => array(
//          'name'      => 'formatFileName',    // Name of the function to use to format filenames
//          'baseDir'   => '',          // See UploaderComponent::$baseDir
                'uploadDir' => 'upload/sponsors/gray', // See UploaderComponent::$uploadDir
                'dbColumn' => 'gray', // The database column name to save the path to
//          'importFrom'    => '',          // Path or URL to import file
//          'defaultPath'   => '',          // Default file path if no upload present
                'maxNameLength' => 200, // Max file name length
                'overwrite' => false, // Overwrite file with same name if it exists
                'stopSave' => true, // Stop the model save() if upload fails
                'allowEmpty' => true, // Allow an empty file upload to continue
                'transforms' => array(
                    array('method' => 'resize', 'width' => 100, 'height' => 40, 'dbColumn' => 'gray')
                ), // What transformations to do on images: scale, resize, etc
//          's3'        => array(),     // Array of Amazon S3 settings
            'metaColumns'   => array(       // Mapping of meta data to database fields
//              'ext' => '',
//              'type' => '',
//              'size' => '',
//              'group' => '',
                'width' => 'width',
                'height' => 'height',
//              'filesize' => ''
            )
            )
        ),
        'Uploader.FileValidation' => array(
            'logo' => array(
//              'maxWidth' => array(
//                  'value' => 100,
//                  'error' => 'Width incorrect'
//              ),
//              'maxHeight' => array(
//                  'value' => 100,
//                  'error' => 'Height incorrect'
//              ),
                'extension' => array(
                    'value' => array('gif', 'jpg', 'png', 'jpeg'),
                    'error' => 'Obrázek musí být typu gif, jpg/jpeg nebo png.',
                ),
                'filesize' => array(
                    'value' => 5242880,
                    'error' => 'Obrázek musí být menší než 5Mb!'
                ),
                'required' => array(
                    'value' => true,
                    'on' => 'create'
                )
//              'required' => array(
//                  'value' => true,
//                  'error' => 'File required'
//              )
            ),
            'gray' => array(
//              'maxWidth' => array(
//                  'value' => 100,
//                  'error' => 'Width incorrect'
//              ),
//              'maxHeight' => array(
//                  'value' => 100,
//                  'error' => 'Height incorrect'
//              ),
                'extension' => array(
                    'value' => array('gif', 'jpg', 'png', 'jpeg'),
                    'error' => 'Obrázek musí být typu gif, jpg/jpeg nebo png.',
                ),
                'filesize' => array(
                    'value' => 5242880,
                    'error' => 'Obrázek musí být menší než 5Mb!'
                ),
                'required' => array(
                    'value' => true,
                    'on' => 'create'
                )
//              'required' => array(
//                  'value' => true,
//                  'error' => 'File required'
//              )
            )
        )
    );

?>

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.