Voyager creates a crop on from the center, and I need to crop the beginning of the image. How do I do this? Only the width and height of the crop are specified in the documentation.
"name": "cropped",
"crop": {
"width": "300",
"height": "250"
}
Right in there documentation about cropping it shows
"thumbnails": [
{
"type": "crop",
"name": "crop-500-500",
"width": 500, // Required
"height": 500, // Required
"x": 50, // Optional. Left offset
"y": 50, // Optional. Top offset
}
]