MakePhotos Docs
Concepts

Generation Types

Available generation types, styles, aspect ratios, and resolutions in MakePhotos.

Generation Types

MakePhotos organizes generation into types, each with its own set of styles, aspect ratios, and resolutions.

Product photography

The product type transforms product images into professional commercial photography.

Styles

StyleNameDescription
studioStudioClean studio setup with controlled lighting
amazonAmazonOptimized for marketplace listings
luxuryLuxuryPremium feel with dramatic lighting
lifestyleLifestyleProduct in a real-world context

Each style has a default prompt that's used unless you provide a custom one. For example, the studio style uses a prompt optimized for clean white-background product shots.

Custom prompts

You can override the default style prompt with your own:

await client.generate.create({
  imageUrl: '...',
  type: 'product',
  style: 'lifestyle',
  prompt: 'Kitchen countertop with morning light, fresh herbs nearby',
});

The custom prompt replaces the style's default prompt entirely.

Aspect ratios

RatioDimensions
1:11024×1024
4:31024×768
3:4768×1024
16:91024×576
9:16576×1024

Default: 1:1

Resolutions

ResolutionCredit multiplier
1K1×
2K2×
4K4×

Default: 1K

Future types

Additional generation types (dating photos, real estate, portrait, food, etc.) are defined in the system but not yet enabled. They will follow the same pattern: a type ID, a set of styles, and configurable aspect ratios and resolutions.

On this page