v 0.1.24

Image Processor

The @ecopages/image-processor package provides powerful image processing capabilities for transforming and optimizing images for web use in your Ecopages project.

Installation

Install the package from JSR:

bunx jsr add @ecopages/image-processor

Configuration

Add the image processor to your Ecopages configuration:

import path from 'node:path';
import { ConfigBuilder } from '@ecopages/core';
import { ImageProcessorPlugin } from '@ecopages/image-processor';

const imageProcessor = new ImageProcessorPlugin({
  name: 'ecopages-image-processor',
  type: 'image',
  options: {
    sourceDir: path.resolve(import.meta.dir, 'src/images'),
    outputDir: path.resolve(import.meta.dir, '.eco/public/images'),
    publicPath: '/public/images',
    acceptedFormats: ['jpg', 'jpeg', 'png', 'webp'],
    quality: 80,
    format: 'webp',
    sizes: [
      { width: 320, label: 'sm' },
      { width: 768, label: 'md' },
      { width: 1024, label: 'lg' },
      { width: 1920, label: 'xl' },
    ],
  },
});

export default await new ConfigBuilder()
  .setRootDir(import.meta.dir)
  .setBaseUrl(import.meta.env.ECOPAGES_BASE_URL)
  .setProcessors([imageProcessor])
  .build();

Configuration Options

Package Structure

The image processor provides several entry points:

Components Usage

HTML Component

import { Image } from '@ecopages/image-processor/component/html';

const imageHtml = Image({
  src: '/images/hero.jpg',
  alt: 'Hero image',
  width: 800,
  height: 600,
  loading: 'lazy'
});

React Component

import { Image } from '@ecopages/image-processor/component/react';

function MyComponent() {
  return (
    <Image
      src="/images/hero.jpg"
      alt="Hero image"
      width={800}
      height={600}
      loading="lazy"
    />
  );
}

The ecopages:images virtual module provides a unified, type-safe way to handle images across your project:

// All images from your source directory are available as named exports
import { heroImage, profilePicture, blogThumbnail } from "ecopages:images";

// Names are automatically converted to camelCase
// example:
// src/images/hero-image.jpg -> heroImage
// src/images/profile_picture.png -> profilePicture

Benefits:

Dependencies

The image processor uses:

Examples

import { EcoImage } from '@ecopages/image-processor/component/html';
import { janKoprivaNex3P5IbnpgUnsplashJpg } from 'ecopages:images';

<div class="grid gap-8">
  <EcoImage
    {...janKoprivaNex3P5IbnpgUnsplashJpg}
    alt="green plant on persons hand"
    layout="full-width"
    height={200}
  />
  <EcoImage
    {...janKoprivaNex3P5IbnpgUnsplashJpg}
    alt="green plant on persons hand"
    width={600}
    height={200}
    layout="constrained"
  />
  <EcoImage
    {...janKoprivaNex3P5IbnpgUnsplashJpg}
    alt="green plant on persons hand"
    layout="fixed"
    width={200}
    height={200}
  />
</div>
green plant on persons handgreen plant on persons handgreen plant on persons hand
import { EcoImage } from '@ecopages/image-processor/component/html';
import { janKoprivaNex3P5IbnpgUnsplashJpg } from 'ecopages:images';

<div class="grid gap-8">
  <EcoImage
    {...janKoprivaNex3P5IbnpgUnsplashJpg}
    width={400}
    alt="green plant on persons hand"
    priority={true}
    unstyled={true}
    data-test="attribute"
  />
  <EcoImage
    {...janKoprivaNex3P5IbnpgUnsplashJpg}
    alt="green plant on persons hand"
    width={300}
    aspectRatio="1/2"
  />
</div>
green plant on persons handgreen plant on persons hand

Photo by Jan Kopřiva on Unsplash