Brijesh's Git Server — wasm-image-utils @ main

Image utilities site without ads using wasm and ffmpeg

app/compress-size/page.tsx (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
"use client";

import { useEffect, useState } from "react";
import { FFmpeg } from "@ffmpeg/ffmpeg";
import { toBlobURL } from "@ffmpeg/util";
import * as React from "react";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";

function InputFile({ onFileSelect }: any) {
  const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => {
    if (event.target.files && event.target.files[0]) {
      onFileSelect(event.target.files[0]);
    }
  };

  return (
    <div className="grid w-full max-w-sm items-center gap-1.5">
      <Label htmlFor="file-input">Select Image</Label>
      <Input
        id="file-input"
        type="file"
        accept="image/*"
        onChange={handleFileChange}
      />
    </div>
  );
}

export default function Home() {
  const [ffmpeg, setFFmpeg] = useState<FFmpeg | null>(null);
  const [isLoading, setIsLoading] = useState(true);
  const [compressing, setCompressing] = useState(false);
  const [error, setError] = useState<string | null>(null);
  const [downloadUrl, setDownloadUrl] = useState("");
  const [downloadFileName, setDownloadFileName] = useState("");
  const [originalFileName, setOriginalFileName] = useState("");
  const [originalFileSize, setOriginalFileSize] = useState("");
  const [originalFileSizeBytes, setOriginalFileSizeBytes] = useState(0);
  const [compressedFileSize, setCompressedFileSize] = useState("");
  const [compressedFileSizeBytes, setCompressedFileSizeBytes] = useState(0);

  useEffect(() => {
    const loadFFmpeg = async () => {
      try {
        const ffmpegInstance = new FFmpeg();
        const baseURL = "https://unpkg.com/@ffmpeg/core@0.12.4/dist/umd";
        await ffmpegInstance.load({
          coreURL: await toBlobURL(
            `${baseURL}/ffmpeg-core.js`,
            "text/javascript",
          ),
          wasmURL: await toBlobURL(
            `${baseURL}/ffmpeg-core.wasm`,
            "application/wasm",
          ),
        });

        setFFmpeg(ffmpegInstance);
        setIsLoading(false);
      } catch (error) {
        console.error("Error loading FFmpeg:", error);
        setError("Failed to load FFmpeg");
      }
    };

    loadFFmpeg();

    return () => {
      if (downloadUrl) {
        URL.revokeObjectURL(downloadUrl);
      }
    };
  }, [downloadUrl]);

  const humanFileSize = (size: number) => {
    const i = size === 0 ? 0 : Math.floor(Math.log(size) / Math.log(1024));
    return (
      (size / Math.pow(1024, i)).toFixed(2) +
      " " +
      ["B", "kB", "MB", "GB", "TB"][i]
    );
  };

  const compressImage = async (file: File) => {
    if (!ffmpeg || !file) return;

    try {
      setCompressing(true);
      setError(null);

      const inputFileName = "input_" + file.name;
      const outputFileName = `${file.name.split(".")[0]}-compressed.${file.name.split(".").pop()}`;

      const fileData = await file.arrayBuffer();
      await ffmpeg.writeFile(inputFileName, new Uint8Array(fileData));
      await ffmpeg.exec(["-i", inputFileName, "-q:v", "20", outputFileName]);
      const data = await ffmpeg.readFile(outputFileName);

      const url = URL.createObjectURL(new Blob([data], { type: file.type }));

      await ffmpeg.deleteFile(inputFileName);
      await ffmpeg.deleteFile(outputFileName);

      if (downloadUrl) {
        URL.revokeObjectURL(downloadUrl);
      }

      setDownloadUrl(url);
      setDownloadFileName(outputFileName);
      setCompressedFileSize(humanFileSize(data.length));
      setCompressedFileSizeBytes(data.length);
      setCompressing(false);
    } catch (error) {
      console.error("Error during compression:", error);
      setError(
        `Error during compression: ${error instanceof Error ? error.message : "Unknown error"}`,
      );
      setCompressing(false);
    }
  };

  const handleCompress = async (event: React.FormEvent<HTMLFormElement>) => {
    event.preventDefault();
    const form = event.currentTarget;
    const fileInput =
      form.querySelector<HTMLInputElement>('input[type="file"]');

    if (!fileInput?.files?.length) {
      setError("Please select a file");
      return;
    }

    const file = fileInput.files[0];
    await compressImage(file);
  };

  const handleFileSelect = (file: File) => {
    setOriginalFileName(file.name);
    setOriginalFileSize(humanFileSize(file.size));
    setOriginalFileSizeBytes(file.size);
  };

  const handleReset = () => {
    window.location.reload();
  };

  return (
    <main>
      <title>Compress Size | Image Utilities</title>
      <h1 className="text-xl font-medium text-gray-900 mb-8">Compress Size</h1>

      <form onSubmit={handleCompress} className="space-y-6">
        <div className="space-y-4">
          <InputFile onFileSelect={handleFileSelect} />

          {originalFileName && (
            <div className="text-sm text-gray-700">
              <p>Original File: {originalFileName}</p>
              <p>Size: {originalFileSize}</p>
            </div>
          )}
        </div>

        <div className="flex gap-4">
          {isLoading ? (
            <p className="text-sm">loading ffmpeg...</p>
          ) : (
            <button
              type="submit"
              disabled={isLoading || !originalFileName || downloadUrl !== ""}
              className="flex justify-center py-[5px] px-[10px] border border-transparent
                       rounded-md shadow-sm text-sm font-semibold text-white bg-blue-600
                       hover:bg-blue-700 focus:outline-none focus:ring-2
                       focus:ring-offset-2 focus:ring-blue-500 disabled:opacity-50
                       disabled:cursor-not-allowed transition-colors duration-200"
            >
              Compress Image
            </button>
          )}

          {originalFileName && (
            <button
              type="button"
              onClick={handleReset}
              className="flex justify-center py-[5px] px-[10px] border border-transparent
                         rounded-md shadow-sm text-sm font-semibold text-white bg-gray-600
                         hover:bg-gray-700 focus:outline-none focus:ring-2
                         focus:ring-offset-2 focus:ring-gray-500 disabled:opacity-50
                         disabled:cursor-not-allowed transition-colors duration-200"
            >
              Reset
            </button>
          )}
        </div>
      </form>

      <div className="mt-8 space-y-4">
        {compressing && (
          <div className="rounded-md p-4 transition-colors duration-200 inline-block">
            <p className="text-sm text-gray-400">Compressing...</p>
          </div>
        )}

        {error && (
          <div className="rounded-md p-4 transition-colors duration-200 inline-block">
            <p className="text-sm text-red-600">{error}</p>
          </div>
        )}

        {downloadUrl && (
          <div className="text-sm text-gray-700">
            <p>Compressed File: {downloadFileName}</p>
            <p>Size: {compressedFileSize}</p>
            <p>
              Compression Ratio:{" "}
              {(
                ((originalFileSizeBytes - compressedFileSizeBytes) /
                  originalFileSizeBytes) *
                100
              ).toFixed(2)}
              % reduction
            </p>
            {compressedFileSizeBytes > originalFileSizeBytes && (
              <p className="text-yellow-600 mt-2">
                Note: Compressed file is larger than the original file
              </p>
            )}
          </div>
        )}

        {downloadUrl && (
          <a
            href={downloadUrl}
            download={downloadFileName}
            className="inline-block text-center py-[5px] px-[10px] rounded-md shadow-sm
                       text-sm font-medium text-white bg-green-600 hover:bg-green-700
                       focus:outline-none focus:ring-2 focus:ring-offset-2
                       focus:ring-green-500 transition-colors duration-200"
          >
            Download Compressed Image
          </a>
        )}
      </div>
    </main>
  );
}