Imgix Integration for On-the-Fly Image Processing

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1221
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1163
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    859
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1063
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    829
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    827

imgix Integration for Image Processing

imgix is a proxy CDN for images: stores originals in your S3, transforms via URL parameters, and delivers through global CDN network.

Connecting a Source

# In dashboard.imgix.com:
# Sources → Add Source → Amazon S3
# S3 Bucket Name: my-assets-bucket
# Access Key ID + Secret Access Key
# Subdomain: mysite.imgix.net

IAM Policy for imgix:

{
  "Version": "2012-10-17",
  "Statement": [{
    "Effect": "Allow",
    "Action": ["s3:GetObject", "s3:ListBucket"],
    "Resource": [
      "arn:aws:s3:::my-assets-bucket",
      "arn:aws:s3:::my-assets-bucket/*"
    ]
  }]
}

Transformation Parameters

Resizing, formats, quality, smart cropping, color effects, and watermarks are all controlled via URL parameters.

TypeScript SDK

import ImgixClient from '@imgix/js-core';

const client = new ImgixClient({
  domain: 'mysite.imgix.net',
  secureURLToken: process.env.IMGIX_SECURE_TOKEN,
  useHTTPS: true,
});

const url = client.buildURL('products/shirt-red.jpg', {
  w: 600,
  h: 600,
  fit: 'crop',
  auto: 'format,compress',
  q: 80,
});

Next.js: Custom Loader

Custom loader enables seamless integration with Next.js Image component for optimized delivery.

Signed URLs for Protected Images

Secure private images using signed URLs with secureURLToken.

imgix integration in Next.js with loader, srcset and signed URLs — 1 working day.