GetPicToolsGetPic

Tutorials

How-To Guides & API Examples

Step-by-step tutorials, API references, and best practices for every tool

Compress ImageStep-by-Step Guide

1

Upload

Drag & drop JPEG, PNG, or WebP images onto the upload area. Supports up to 50 images at once.

2

Adjust Quality

Use the quality slider (10-100) to control output file size. Lower values produce smaller files.

3

Set Max Width

Optionally set a maximum width to constrain large images.

4

Export

Click 'Compress All' to process. Download individual files or a ZIP archive.

API Example

curl -X POST https://getpictools.com/api/v1/compress \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "[email protected]" \
  -F "quality=80"

Convert FormatStep-by-Step Guide

1

Upload

Drop your images onto the upload area.

2

Select Output Format

Choose from PNG, JPEG, or WebP as your target format.

3

Configure Options

Set quality for lossy formats. PNG output is always lossless.

4

Convert & Download

Click 'Convert All'. Download converted files individually or as ZIP.

API Example

curl -X POST https://getpictools.com/api/v1/convert \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "[email protected]" \
  -F "format=png"

Resize ImageStep-by-Step Guide

1

Upload

Upload product photos to resize.

2

Choose Preset

Select a marketplace preset: Amazon (2000×2000), Shopify, TikTok, Instagram, or custom dimensions.

3

Preview

See a preview of how your image will look at the target size.

4

Batch Export

Resize all images at once and download as ZIP.

API Example

curl -X POST https://getpictools.com/api/v1/resize \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "[email protected]" \
  -F "width=2000" \
  -F "height=2000"

Strip EXIFStep-by-Step Guide

1

Upload

Upload images containing EXIF/metadata.

2

Automatic Processing

EXIF data (GPS, camera info, timestamps) is stripped automatically in your browser.

3

Download

Download the cleaned images. No metadata will remain.

API Example

curl -X POST https://getpictools.com/api/v1/strip-exif \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "[email protected]"

WatermarkStep-by-Step Guide

1

Upload

Upload product photos for watermarking.

2

Set Watermark Text

Enter the text you want to overlay (e.g., brand name, copyright notice).

3

Customize Style

Adjust font size, color, opacity, and position (top-left, center, bottom-right, etc.).

4

Apply & Export

Click to apply watermark to all images. Download as ZIP.

API Example

curl -X POST https://getpictools.com/api/v1/watermark \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "[email protected]" \
  -F "text=© Your Brand" \
  -F "position=bottom-right"