Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

front: convert base64 encoded map image to jpeg #9029

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { useEffect, useState } from 'react';

import { Table, TR, TH, TD } from '@ag-media/react-pdf-table';
import { Page, Text, Image, Document, View, Link } from '@react-pdf/renderer';
import { useTranslation } from 'react-i18next';
Expand All @@ -9,7 +11,7 @@ import { capitalizeFirstLetter } from 'utils/strings';

import styles from './SimulationReportStyleSheet';
import type { SimulationReportSheetProps } from '../types';
import { getStopDurationTime } from '../utils/formatSimulationReportSheet';
import { base64ToJpeg, getStopDurationTime } from '../utils/formatSimulationReportSheet';

const SimulationReportSheet = ({
stdcmData,
Expand All @@ -32,6 +34,28 @@ const SimulationReportSheet = ({
path_number2: 'n°YYYYYY',
};

const [mapImageUrl, setMapImageUrl] = useState<string | null>(null);

// Convert image to JPEG
useEffect(() => {
if (mapCanvas) {
base64ToJpeg(mapCanvas, 0.8).then((blob) => {
const objectUrl = URL.createObjectURL(blob);
setMapImageUrl(objectUrl);
});
}
}, [mapCanvas]);

// Cleanup the object URL when the component is unmounted or before a new one is created
useEffect(
() => () => {
if (mapImageUrl) {
URL.revokeObjectURL(mapImageUrl);
}
},
[mapImageUrl]
);

return (
<Document>
<Page wrap={false} style={styles.main.page} size={[1344]}>
Expand Down Expand Up @@ -345,7 +369,7 @@ const SimulationReportSheet = ({
</View>
{mapCanvas && (
<View style={styles.map.map} id="simulationMap">
<Image src={mapCanvas} />
{mapImageUrl && <Image src={mapImageUrl} />}
</View>
)}
<View style={styles.footer.warrantyBox}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,41 @@ export function getOperationalPointsWithTimes(

return opResults;
}

/**
* Converts a base64 image into a JPEG blob while reducing quality.
SharglutDev marked this conversation as resolved.
Show resolved Hide resolved
* @param base64Image - Image in base64
* @param quality - Image quality (between 0 and 1, where 1 is the best quality)
* @returns {Promise<Blob>} - Return an optimised JPEG Blob
*/
export const base64ToJpeg = (base64Image: string, quality: number): Promise<Blob> =>
new Promise((resolve, reject) => {
const img = new Image();
img.src = base64Image;
img.onload = () => {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
if (!ctx) {
reject(new Error('Could not get canvas context'));
return;
}
canvas.width = img.width;
canvas.height = img.height;

ctx.drawImage(img, 0, 0);

canvas.toBlob(
(blob) => {
if (blob) {
resolve(blob);
}
},
'image/jpeg',
quality
);
};

img.onerror = (error) => {
reject(error);
};
});
Loading