Skip to content

Commit d16456c

Browse files
committed
#796 [JS] fix: use natural aspect ratio for calculate canvas size
1 parent 73510b4 commit d16456c

File tree

2 files changed

+47
-17
lines changed

2 files changed

+47
-17
lines changed

js/modules/media.js

+46-16
Original file line numberDiff line numberDiff line change
@@ -140,21 +140,23 @@ window.saturne.media.event = function() {
140140
*/
141141
window.saturne.media.initPan = function() {
142142
const modalContent = document.querySelector('.modal-content');
143-
const hammer = new Hammer(modalContent);
144-
145-
hammer.get('pan').set({ direction: Hammer.DIRECTION_ALL });
143+
const hammer = new Hammer(modalContent, {
144+
touchAction: 'auto', // Configure touch action behavior
145+
recognizers: [
146+
[Hammer.Pan, { direction: Hammer.DIRECTION_ALL }] // Enable panning in all directions
147+
],
148+
threshold: 5, // Adjust this threshold for more sensitive pan detection
149+
velocity: 0.1 // Adjust this velocity for smoother pan movement
150+
});
146151

147152
hammer.on('pan', (e) => {
148153
if (window.saturne.media.isMoving) {
149-
// Slow down the movement by dividing the delta values
150-
const slowFactor = 3; // Adjust this factor to control the speed
151-
const dampingFactor = 0.1; // Adjust this factor for more realistic movement
152-
153-
const deltaX = e.deltaX * dampingFactor;
154-
const deltaY = e.deltaY * dampingFactor;
154+
const deltaX = e.deltaX;
155+
const deltaY = e.deltaY;
155156

156-
modalContent.scrollLeft -= deltaX / slowFactor;
157-
modalContent.scrollTop -= deltaY / slowFactor;
157+
// Adjust the scroll position of modal content
158+
modalContent.scrollLeft -= deltaX;
159+
modalContent.scrollTop -= deltaY;
158160
}
159161
});
160162
};
@@ -316,13 +318,41 @@ window.saturne.media.drawImageOnCanvas = function(event) {
316318
img.src = event.target.result;
317319
window.saturne.media.img = event;
318320
img.onload = function() {
319-
if (img.width >= $('.fast-upload-options').data('image-resolution-width')) {
320-
window.saturne.media.canvas.width = $('.fast-upload-options').data('image-resolution-width');
321-
window.saturne.media.canvas.height = $('.fast-upload-options').data('image-resolution-height');
321+
const maxWidth = $('.fast-upload-options').data('image-resolution-width');
322+
const maxHeight = $('.fast-upload-options').data('image-resolution-height');
323+
let canvasWidth, canvasHeight;
324+
325+
// Calculate the aspect ratio of the image
326+
const aspectRatio = img.width / img.height;
327+
328+
if (img.width > maxWidth || img.height > maxHeight) {
329+
if (aspectRatio > 1) {
330+
// Landscape orientation
331+
canvasWidth = maxWidth;
332+
canvasHeight = maxWidth / aspectRatio;
333+
} else {
334+
// Portrait orientation
335+
canvasHeight = maxHeight;
336+
canvasWidth = maxHeight * aspectRatio;
337+
}
338+
339+
// Ensure the canvas dimensions do not exceed the maximum dimensions
340+
if (canvasWidth > maxWidth) {
341+
canvasWidth = maxWidth;
342+
canvasHeight = maxWidth / aspectRatio;
343+
}
344+
if (canvasHeight > maxHeight) {
345+
canvasHeight = maxHeight;
346+
canvasWidth = maxHeight * aspectRatio;
347+
}
322348
} else {
323-
window.saturne.media.canvas.width = img.width;
324-
window.saturne.media.canvas.height = img.height;
349+
canvasWidth = img.width;
350+
canvasHeight = img.height;
325351
}
352+
353+
window.saturne.media.canvas.width = canvasWidth;
354+
window.saturne.media.canvas.height = canvasHeight;
355+
326356
context.drawImage(img, 0, 0, window.saturne.media.canvas.width, window.saturne.media.canvas.height);
327357

328358
// Restore drawing state

0 commit comments

Comments
 (0)