Stability Style Transfer

Model Information

Display Name: Stability Style Transfer

API Model ID: stability-ai/control-style-transfer

Category: Image To Image

Description: Style Transfer applies the visual characteristics of a reference style image to a target image, transforming existing content while preserving the original composition. Requires two images: an init image (content) and a style image. **Key Features:** - Transfers style while preserving composition - style_strength, composition_fidelity and change_strength controls - 1 megapixel output, same aspect ratio as the init image **Best For:** - Consistent styling across multiple assets - Restyling content without changing layout **Note:** Requires both an init image and a style image.

How to Use This Model

To use Stability Style Transfer via the HInow.ai API, use the model ID: stability-ai/control-style-transfer

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "stability-ai/control-style-transfer",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.12

Available Parameters

  • style_strength: Influence of the style image on the result (0-1).
  • composition_fidelity: How closely the output preserves the init image's composition (0-1).
  • change_strength: How much the original image should change (0.1-1).
  • negative_prompt: Keywords describing what you do NOT wish to see in the output image. Advanced feature.
  • seed: Random seed for reproducibility. Use -1 (or omit) for a random seed.
  • output_format: Output image format. (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "stability-ai/control-style-transfer"

Featured: No

Documentation: https://hinow.ai/models/stability-ai/control-style-transfer

API Endpoint: https://api.hinow.ai/v1

Back to Models

Stability Style Transfer

stability-ai/control-style-transfer

$0.120
per image

About

Style Transfer applies the visual characteristics of a reference style image to a target image, transforming existing content while preserving the original composition. Requires two images: an init image (content) and a style image.

Key Features:

  • Transfers style while preserving composition
  • style_strength, composition_fidelity and change_strength controls
  • 1 megapixel output, same aspect ratio as the init image

Best For:

  • Consistent styling across multiple assets
  • Restyling content without changing layout

Note: Requires both an init image and a style image.

Capabilities

Image To Image

Parameters

style_strength

Influence of the style image on the result (0-1).

composition_fidelity

How closely the output preserves the init image's composition (0-1).

change_strength

How much the original image should change (0.1-1).

negative_prompt

Keywords describing what you do NOT wish to see in the output image. Advanced feature.

seed

Random seed for reproducibility. Use -1 (or omit) for a random seed.

output_format

Output image format.

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "stability-ai/control-style-transfer",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "style_strength": "",
      "composition_fidelity": "",
      "change_strength": "",
      "negative_prompt": "",
      "seed": "",
      "output_format": "jpeg"
    }
  }'