-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from EduardoDePatta/feature/image-resizer
[Feat] - Image Resizer
- Loading branch information
Showing
12 changed files
with
1,472 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
"use client"; | ||
import { DragEvent, useCallback, useMemo, useRef, useState } from "react"; | ||
import UploadIcon from "@/components/icons/UploadIcon"; | ||
|
||
type Status = "idle" | "loading" | "error" | "unsupported" | "hover"; | ||
|
||
const MAX_FILE_SIZE = 4 * 1024 * 1024; | ||
interface ImageUploadProps { | ||
onFileSelect: (file: File) => void; | ||
maxFileSize?: number; | ||
} | ||
|
||
const ImageUploadComponent = ({ | ||
onFileSelect, | ||
maxFileSize = MAX_FILE_SIZE, | ||
}: ImageUploadProps) => { | ||
const [status, setStatus] = useState<Status>("idle"); | ||
const inputRef = useRef<HTMLInputElement>(null); | ||
|
||
const formattedMaxSize = useMemo((): string => { | ||
const sizeInMB = maxFileSize / (1024 * 1024); | ||
return Number.isInteger(sizeInMB) | ||
? `${sizeInMB}MB` | ||
: `${sizeInMB.toFixed(2)}MB`; | ||
}, [maxFileSize]); | ||
|
||
const handleDrop = useCallback( | ||
(event: DragEvent<HTMLDivElement>) => { | ||
event.preventDefault(); | ||
|
||
const file = event.dataTransfer.files[0]; | ||
if (!file || !file.type.startsWith("image/")) { | ||
setStatus("unsupported"); | ||
return; | ||
} | ||
|
||
if (file.size > maxFileSize) { | ||
setStatus("error"); | ||
return; | ||
} | ||
|
||
setStatus("loading"); | ||
onFileSelect(file); | ||
setStatus("idle"); | ||
}, | ||
[onFileSelect, maxFileSize] | ||
); | ||
|
||
const handleDragOver = useCallback( | ||
(event: React.DragEvent<HTMLDivElement>) => { | ||
event.preventDefault(); | ||
setStatus("hover"); | ||
}, | ||
[] | ||
); | ||
|
||
const handleDragLeave = useCallback(() => { | ||
setStatus("idle"); | ||
}, []); | ||
|
||
const handleClick = () => { | ||
inputRef.current?.click(); | ||
}; | ||
|
||
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
const file = event.target.files?.[0]; | ||
if (file) { | ||
if (!file.type.startsWith("image/")) { | ||
setStatus("unsupported"); | ||
return; | ||
} | ||
|
||
if (file.size > maxFileSize) { | ||
setStatus("error"); | ||
return; | ||
} | ||
|
||
setStatus("loading"); | ||
onFileSelect(file); | ||
setStatus("idle"); | ||
} | ||
}; | ||
|
||
return ( | ||
<div | ||
onDrop={handleDrop} | ||
onDragOver={handleDragOver} | ||
onDragLeave={handleDragLeave} | ||
onClick={handleClick} | ||
className="flex flex-col border border-dashed border-border p-6 text-center text-muted-foreground rounded-lg min-h-40 items-center justify-center bg-muted cursor-pointer mb-2" | ||
> | ||
<input | ||
ref={inputRef} | ||
type="file" | ||
accept="image/*" | ||
className="hidden" | ||
onChange={handleFileChange} | ||
/> | ||
<UploadIcon /> | ||
{statusComponents[status](formattedMaxSize)} | ||
</div> | ||
); | ||
}; | ||
|
||
const StatusComponent = ({ | ||
title, | ||
message, | ||
}: { | ||
title: string; | ||
message?: string; | ||
}) => ( | ||
<div> | ||
<p>{title}</p> | ||
<p>{message || "\u00A0"}</p> | ||
</div> | ||
); | ||
|
||
const statusComponents: Record<Status, (maxSize: string) => JSX.Element> = { | ||
idle: (maxSize) => ( | ||
<StatusComponent | ||
title="Drag and drop your image here, or click to select" | ||
message={`Max size ${maxSize}`} | ||
/> | ||
), | ||
loading: () => <StatusComponent title="Loading..." />, | ||
error: (maxSize) => ( | ||
<StatusComponent title="Image is too big!" message={`${maxSize} max`} /> | ||
), | ||
unsupported: () => <StatusComponent title="Please provide a valid image" />, | ||
hover: () => <StatusComponent title="Drop it like it's hot! 🔥" />, | ||
}; | ||
|
||
export { ImageUploadComponent }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
import Link from "next/link"; | ||
|
||
export default function ImageResizeSEO() { | ||
return ( | ||
<div className="content-wrapper"> | ||
<section> | ||
<h2>Free, Open Source & Ad-free</h2> | ||
<p> | ||
This free image resizer is a versatile tool that allows you to resize | ||
various image formats, including PNG, JPEG, and SVG. While PNG and | ||
JPEG images are pixel-based and can have their dimensions adjusted, | ||
SVGs are vector-based and can be scaled infinitely without losing | ||
quality. However, if you convert a PNG or JPEG to SVG using this tool, | ||
it will result in an SVG file that contains the image as Base64 data. | ||
This means the image will still be rasterized and can lose quality | ||
when resized. Whether you need to reduce file size, adjust dimensions, | ||
or convert formats, our tool can help. Made with 💜 by the developers | ||
building Jam. | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>How to Use the Image Resizer</h2> | ||
<p> | ||
Resizing images with our online tool is simple and straightforward. | ||
Just upload your image, select the desired dimensions and format, and | ||
download the resized image. No signup required. Here's how: | ||
</p> | ||
<ul> | ||
<li> | ||
<b>Step 1:</b> <br /> Upload your image: Choose the image file you | ||
want to resize. Supported formats include PNG, JPEG, and SVG. | ||
</li> | ||
<li> | ||
<b>Step 2:</b> <br /> Select dimensions (for PNG/JPEG): Enter the | ||
width or height, and the tool will maintain the aspect ratio. For | ||
SVG, the image can be scaled as needed without losing quality. | ||
</li> | ||
<li> | ||
<b>Step 3:</b> <br /> Choose the format: Select between PNG, JPEG, | ||
or SVG. While PNG and JPEG are more common, SVG is a good choice if | ||
you want an image that can scale perfectly to any size. However, be | ||
aware that converting a PNG or JPEG to SVG will result in an SVG | ||
that embeds the image as Base64, which does not improve scalability | ||
or quality. | ||
</li> | ||
<li> | ||
<b>Step 4:</b> <br /> Download: Click the button to download the | ||
resized image. | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Benefits of Using an Image Resizer</h2> | ||
<p> | ||
Resizing images helps in optimizing their use across different | ||
platforms and devices. Whether you're a developer, designer, or | ||
content creator, resizing images can greatly enhance the performance | ||
and aesthetics of your work. | ||
</p> | ||
<ul> | ||
<li> | ||
<b>Performance:</b> <br /> Smaller image files load faster, | ||
improving website performance and user experience. | ||
</li> | ||
<li> | ||
<b>Compatibility:</b> <br /> Ensure your images fit perfectly on | ||
different screens and devices by adjusting their dimensions. | ||
</li> | ||
<li> | ||
<b>File Size Reduction:</b> <br /> Reducing the dimensions can | ||
significantly decrease the file size without losing quality. This is | ||
particularly effective with PNG and JPEG formats. | ||
</li> | ||
<li> | ||
<b>SVG Scalability:</b> <br /> SVG images are vector-based, meaning | ||
they can be scaled infinitely without losing quality. However, | ||
converting a PNG or JPEG to SVG results in an SVG that contains the | ||
image as Base64. This type of SVG will behave like a raster image | ||
and may lose quality when resized, similar to the original PNG or | ||
JPEG. | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>More Image Tools: Easy Conversion</h2> | ||
<p> | ||
Explore other image conversion tools available on Jam.dev for | ||
developers and designers. They're all free, open source, and available | ||
in dark mode too. | ||
</p> | ||
<ul> | ||
<li> | ||
<Link href="/utilities/image-to-base64">Image to Base64</Link>: | ||
Instantly convert images to Base64 strings. Embed images directly in | ||
your code with ease. | ||
</li> | ||
<li> | ||
<Link href="/utilities/hex-to-rgb">HEX to RGB</Link>: Easily convert | ||
HEX to RGB and generate CSS snippets for web development. | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>FAQs</h2> | ||
<ul> | ||
<li> | ||
<b>How does the image resizer maintain quality?</b> <br /> Our tool | ||
uses advanced algorithms to resize images while preserving their | ||
original quality, ensuring sharpness and clarity. For SVGs, the tool | ||
ensures that the vector quality is maintained at any size. However, | ||
if you convert a PNG or JPEG to SVG, the resulting SVG will embed | ||
the original image in Base64 format, which means it will behave like | ||
a raster image and may lose quality when resized. | ||
</li> | ||
<li> | ||
<b>What formats are supported?</b> <br /> Currently, our tool | ||
supports PNG, JPEG, and SVG formats, which are the most commonly | ||
used image formats on the web. | ||
</li> | ||
<li> | ||
<b>Can I resize images to specific dimensions?</b> <br /> Yes, you | ||
can specify either the width or height, and the aspect ratio will be | ||
maintained automatically. This applies to both raster formats (PNG, | ||
JPEG) and vector formats (SVG). | ||
</li> | ||
<li> | ||
<b>Is there a limit to the image size?</b> <br /> Our tool supports | ||
image files up to 4MB in size. This ensures quick processing and | ||
efficient performance. While SVGs are generally lightweight and can | ||
be resized quickly, PNG and JPEG images must also adhere to this | ||
size limit. | ||
</li> | ||
<li> | ||
<b>Is this tool free to use?</b> <br /> Yes, the image resizer is | ||
completely free to use, without any hidden costs or limitations. | ||
</li> | ||
</ul> | ||
</section> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.