HiMegia

Model Information

Display Name: HiMegia

API Model ID: hinow/himegia

Category: Text To Image

Description: HiMegia is HiNow's advanced image generation model, capable of creating stunning, photorealistic images from text descriptions with exceptional quality and detail. **Key Features:** - Photorealistic image generation with high fidelity - Advanced understanding of complex prompts and compositions - Support for multiple artistic styles and creative directions - Flexible output sizes and quality levels **Capabilities:** - Natural language understanding for detailed scene composition - Accurate rendering of text within images - Consistent style application across multiple generations - Fine-grained control over image attributes **Output Options:** - Multiple aspect ratios: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3 - Quality: Standard, HD - Formats: JPEG, PNG **Use Cases:** - Marketing and advertising visuals - Product concept visualization - Creative artwork and illustrations - Social media content creation - Rapid prototyping for design projects **Performance:** Optimized for both speed and quality, delivering professional-grade results suitable for commercial applications.

How to Use This Model

To use HiMegia via the HInow.ai API, use the model ID: hinow/himegia

API Request Example (Chat/Text)


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

{
  "model": "hinow/himegia",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


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

{
  "model": "hinow/himegia",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.082

Available Parameters

  • aspect_ratio: Output aspect ratio. (Options: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 21:9, 9:21)
  • num_inference_steps: Number of inference steps. (Options: 20, 25, 28, 30, 35, 40)
  • guidance_scale: How closely to follow the prompt. (Options: 1.5, 2.0, 2.5, 3.0, 3.5)
  • output_format: Output image format. (Options: jpeg, png)

Quick Reference

To use this model, set: "model": "hinow/himegia"

Featured: Yes

Documentation: https://hinow.ai/models/hinow/himegia

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

Back to Models

HiMegia

Featured

hinow/himegia

$0.082
per image

About

HiMegia is HiNow's advanced image generation model, capable of creating stunning, photorealistic images from text descriptions with exceptional quality and detail.

Key Features:

  • Photorealistic image generation with high fidelity
  • Advanced understanding of complex prompts and compositions
  • Support for multiple artistic styles and creative directions
  • Flexible output sizes and quality levels

Capabilities:

  • Natural language understanding for detailed scene composition
  • Accurate rendering of text within images
  • Consistent style application across multiple generations
  • Fine-grained control over image attributes

Output Options:

  • Multiple aspect ratios: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3
  • Quality: Standard, HD
  • Formats: JPEG, PNG

Use Cases:

  • Marketing and advertising visuals
  • Product concept visualization
  • Creative artwork and illustrations
  • Social media content creation
  • Rapid prototyping for design projects

Performance:
Optimized for both speed and quality, delivering professional-grade results suitable for commercial applications.

Capabilities

Text To ImageImage To Image

Parameters

aspect_ratio

Output aspect ratio.

1:116:99:164:33:43:22:321:99:21
num_inference_steps

Number of inference steps.

202528303540
guidance_scale

How closely to follow the prompt.

1.52.02.53.03.5
output_format

Output image format.

jpegpng

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "hinow/himegia",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "aspect_ratio": "1:1",
      "num_inference_steps": "20",
      "guidance_scale": "1.5",
      "output_format": "jpeg"
    }
  }'