Skip to content

Instantly share code, notes, and snippets.

@tohagan
Created February 7, 2025 01:40
Show Gist options
  • Save tohagan/338ac648e32b56f474c077d93802b901 to your computer and use it in GitHub Desktop.
Save tohagan/338ac648e32b56f474c077d93802b901 to your computer and use it in GitHub Desktop.
Upload image, recommend cropping scale and offsets (AI), allow the user to adjust the final cropping to a fixed image size.

Example code from GPT 4o-mini to support capturing images from a user of a fixed size.

  • File Upload: The user uploads an image, which is read using a FileReader.
  • SmartCrop: Once the image is loaded, SmartCrop analyzes it and provides a suggested cropping area based on the preset final dimensions.
  • Cropper.js: The suggested crop area is set in Cropper.js, allowing the user to see the recommended crop and make adjustments. The aspect ratio is fixed to the desired dimensions.
  • Cropping: When the user clicks the "Crop" button, the cropped image is drawn onto a canvas with the specified final dimensions.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Cropper with SmartCrop</title>
<link rel="stylesheet" href="https://unpkg.com/cropperjs/dist/cropper.css" />
<style>
#canvas {
border: 1px solid #ccc;
margin-top: 10px;
}
img {
max-width: 100%;
display: block;
margin: 10px 0;
}
</style>
</head>
<body>
<h1>Image Cropper with SmartCrop</h1>
<input type="file" id="upload" accept="image/*" />
<img id="image" style="display:none;" />
<div>
<canvas id="canvas"></canvas>
</div>
<button id="crop">Crop</button>
<script src="https://unpkg.com/smartcrop/dist/smartcrop.min.js"></script>
<script src="https://unpkg.com/cropperjs/dist/cropper.js"></script>
<script>
const upload = document.getElementById('upload');
const image = document.getElementById('image');
const canvas = document.getElementById('canvas');
const cropButton = document.getElementById('crop');
let cropper;
// Set the desired final image dimensions
const finalWidth = 300;
const finalHeight = 200;
upload.addEventListener('change', (event) => {
const file = event.target.files[0];
const reader = new FileReader();
reader.onload = (e) => {
image.src = e.target.result;
image.style.display = 'block';
// Use SmartCrop to get the suggested crop
SmartCrop.crop(image, { width: finalWidth, height: finalHeight }).then((result) => {
const crop = result.topCrop;
// Initialize Cropper.js with the suggested crop area
cropper = new Cropper(image, {
aspectRatio: finalWidth / finalHeight,
viewMode: 1,
cropBoxResizable: true,
cropBoxMovable: true,
ready: () => {
// Set the crop box to the suggested area
cropper.setCropBoxData({
left: crop.x,
top: crop.y,
width: crop.width,
height: crop.height,
});
},
});
});
};
reader.readAsDataURL(file);
});
cropButton.addEventListener('click', () => {
const croppedCanvas = cropper.getCroppedCanvas({
width: finalWidth,
height: finalHeight,
});
const ctx = canvas.getContext('2d');
canvas.width = finalWidth;
canvas.height = finalHeight;
ctx.drawImage(croppedCanvas, 0, 0);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment