function imageSVGViewBox (id, box, imageWidth, imageHeight) {
  const [x, y, width, height] = box.split(' ')
  return `/images/${id}/scale_to_box/${Math.floor(x)}/${Math.floor(y)}/${Math.floor(width)}/${Math.floor(height)}/${imageWidth}/${imageHeight}`
}