Image Optimization
🪄 Image Optimization
Pinata Image Optimization
Pinata image optimizations provides image optimization functionality directly through your Dedicated Gateway. These capabilities that can significantly improve the load time and experience when viewing image content.
Any image you have uploaded can be manipulated with query string parameters. ‌The query string options are defined below. ‌
Options ‌
At least one option must be specified. Options are comma-separated (spaces are not allowed anywhere). Names of options can be specified in full or abbreviated. ‌
- img-width=x
- Specifies maximum width of the image in pixels. Exact behavior depends on the fit mode (described below).
- img-height=x
- Specifies maximum height of the image in pixels. Exact behavior depends on the fit mode (described below).
- img-dpr=x
- Device Pixel Ratio. Default 1. Multiplier for width/height that makes it easier to specify higher-DPI sizes in .
- img-fit
- Affects interpretation of width and height. All resizing modes preserve aspect ratio. Available modes are:
- img-fit=scale-down Image will be shrunk in size to fully fit within the given width or height, but won’t be enlarged.
- img-fit=contain Image will be resized (shrunk or enlarged) to be as large as possible within the given width or height while preserving the aspect ratio.
- img-fit=cover Image will be resized to exactly fill the entire area specified by width and height, and will cropped if necessary.
- img-fit=crop Image will be shrunk and cropped to fit within the area specified by width and height. The image won’t be enlarged. For images smaller than the given dimensions it’s the same as scale-down. For images larger than the given dimensions, it’s the same as cover.
- img-fit=pad Image will be resized (shrunk or enlarged) to be as large as possible within the given width or height while preserving the aspect ratio, and the extra area will be filled with a background color (white by default). Transparent background may be very expensive, and it’s better to use fit=contain and CSS object-fit: contain property instead.
- Affects interpretation of width and height. All resizing modes preserve aspect ratio. Available modes are:
- img-gravity
- When cropping with fit=cover, specifies the most important side or point in the image that shouldn’t be cropped off.
- img-gravity=auto
- The point will be guessed by looking for areas that stand out the most from image background
- img-gravity=side and img-gravity=XxY
- If a side (left, right, top, bottom) or coordinates specified on a scale from 0.0 (top or left) to 1.0 (bottom or right), 0.5 being the center. The X and Y coordinates are separated by lowercase x, e.g. 0x1 means left and bottom, 0.5x0.5 is the center, 0.5x0.33 is a point in the top third of the image.
- img-gravity=auto
- When cropping with fit=cover, specifies the most important side or point in the image that shouldn’t be cropped off.
- img-quality=x
- Specifies quality for images in JPEG, WebP and AVIF formats. The quality is in 1-100 scale, but useful values are between 50 (low quality, small file size) and 90 (high quality, large file size). 85 is the default. When using the PNG format, an explicit quality setting allows use of PNG8 (palette) variant of the format.
- img-format=auto
- Allows serving of the WebP format to browsers that support it. If this option is not specified, a standard format like JPEG or PNG will be used.
- img-anim=false
- Reduces animations to still images. This setting is recommended to avoid surprisingly large animGIF files, or flashing images.
- img-sharpen=x
- Specifies strength of sharpening filter. The value is a floating-point number between 0 (no sharpening) and 10 (max). 1 is a recommended value.
- img-onerror=redirect
- In case of a fatal error that prevents the image from being resized, redirects to the unresized source image URL. This may be useful in case some images require user authentication and cannot be fetched. This option shouldn’t be used if the source images may be very large. This option is ignored if the image is from another domain (subdomains are OK).
- img-metadata
- Controls amount of invisible metadata (EXIF data) that should be preserved. Color profiles and EXIF rotation are applied to the image even if the metadata is discarded. Note that if the Polish feature is enabled, all metadata may have been removed already and this option may have no effect.
- img-metadata=keep
- Preserve most of the image metadata (including GPS location) when possible.
- img-metadata=copyright
- Discard all metadata except EXIF copyright tag. This is the default for JPEG images. img-metadata=none Discard all invisible metadata.
- img-metadata=keep
- Controls amount of invisible metadata (EXIF data) that should be preserved. Color profiles and EXIF rotation are applied to the image even if the metadata is discarded. Note that if the Polish feature is enabled, all metadata may have been removed already and this option may have no effect.
Formats and limitations
Read JPEG, PNG, GIF (including animations), and WebP images. SVG is not supported, since this format is inherently scalable and does not need resizing. Resize and generate JPEG and PNG images, and optionally AVIF or WebP. AVIF format is supported on a best-effort basis. Images that cannot be compressed as AVIF will be served as WebP instead.