Search code examples
javascriptcssjcrop

How to ratio 2:1 in jCrop?


jCrop ratio is limited? If width 2px, height 2px. I want to aspect ratio 2:1. How can I edit jCrop?


Solution

  • you can do this by setOption method

    jcrop_api.setOptions(
    {
        aspectRatio: 2/1
    });