File size: 15,787 Bytes
96c4f85 124fc9e 96c4f85 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | #!/usr/bin/env python3
"""
Jimeng Image Generator Script
Generates images using the local Jimeng API and downloads them to the /pic folder.
"""
import os
import sys
import argparse
import requests
from pathlib import Path
from datetime import datetime
from io import BytesIO
try:
from PIL import Image
PIL_AVAILABLE = True
except ImportError:
PIL_AVAILABLE = False
print("⚠️ Warning: Pillow not installed. WebP images will be saved as-is.")
print(" Install with: pip install Pillow")
def generate_text_to_image(
prompt: str,
session_id: str,
model: str = "jimeng-4.0",
ratio: str = "1:1",
resolution: str = "2k",
intelligent_ratio: bool = False,
negative_prompt: str = None,
sample_strength: float = None,
api_url: str = "http://localhost:5100",
output_dir: str = None
):
"""
Generate images from text using the Jimeng API (文生图).
Args:
prompt: The text prompt for image generation
session_id: Jimeng session ID (with region prefix if needed)
model: Model to use (jimeng-4.0, jimeng-3.1, etc.)
ratio: Aspect ratio (1:1, 16:9, etc.)
resolution: Resolution level (1k, 2k, 4k)
intelligent_ratio: Enable automatic ratio detection
negative_prompt: Negative prompt (elements to avoid)
sample_strength: Sampling strength (0.0-1.0)
api_url: Jimeng API base URL
output_dir: Output directory for downloaded images
Returns:
List of downloaded image file paths
"""
endpoint = f"{api_url}/v1/images/generations"
# Prepare request payload
payload = {
"model": model,
"prompt": prompt,
"ratio": ratio,
"resolution": resolution,
"intelligent_ratio": intelligent_ratio
}
if negative_prompt:
payload["negative_prompt"] = negative_prompt
if sample_strength is not None:
payload["sample_strength"] = sample_strength
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {session_id}"
}
print(f"🎨 Generating image(s) with prompt: {prompt[:60]}...")
print(f"📐 Model: {model}, Ratio: {ratio}, Resolution: {resolution}")
# Call the API
try:
response = requests.post(endpoint, json=payload, headers=headers, timeout=300)
response.raise_for_status()
api_response = response.json()
except requests.exceptions.RequestException as e:
print(f"❌ Error calling API: {e}")
if hasattr(e, 'response') and e.response is not None:
print(f" Response: {e.response.text}")
sys.exit(1)
# Download images
return download_images(api_response, output_dir, "text")
def generate_image_to_image(
prompt: str,
session_id: str,
images: list,
model: str = "jimeng-4.0",
ratio: str = "1:1",
resolution: str = "2k",
intelligent_ratio: bool = False,
negative_prompt: str = None,
sample_strength: float = None,
api_url: str = "http://localhost:5100",
output_dir: str = None
):
"""
Generate images from input images using the Jimeng API (图生图).
Args:
prompt: The text prompt for image generation
session_id: Jimeng session ID
images: List of image paths or URLs (1-10 images)
model: Model to use
ratio: Aspect ratio
resolution: Resolution level
intelligent_ratio: Enable automatic ratio detection
negative_prompt: Negative prompt
sample_strength: Sampling strength
api_url: Jimeng API base URL
output_dir: Output directory for downloaded images
Returns:
List of downloaded image file paths
"""
endpoint = f"{api_url}/v1/images/compositions"
headers = {
"Authorization": f"Bearer {session_id}"
}
# Determine if we need multipart/form-data (local files) or JSON (URLs)
has_local_files = any(os.path.exists(img) for img in images)
print(f"🎨 Generating image composition with prompt: {prompt[:60]}...")
print(f"📐 Input images: {len(images)}, Model: {model}")
try:
if has_local_files:
# Use multipart/form-data for file uploads
files = []
data = {
"prompt": prompt,
"model": model,
"ratio": ratio,
"resolution": resolution
}
if intelligent_ratio:
data["intelligent_ratio"] = "true"
if negative_prompt:
data["negative_prompt"] = negative_prompt
if sample_strength is not None:
data["sample_strength"] = str(sample_strength)
# Add image files
for img_path in images:
if os.path.exists(img_path):
files.append(('images', open(img_path, 'rb')))
else:
# Assume it's a URL
if 'images' not in data:
data['images'] = []
data['images'].append(img_path)
response = requests.post(endpoint, data=data, files=files, headers=headers, timeout=300)
# Close file handles
for _, file_obj in files:
file_obj.close()
else:
# Use JSON for URL-based images
headers["Content-Type"] = "application/json"
payload = {
"model": model,
"prompt": prompt,
"images": images,
"ratio": ratio,
"resolution": resolution,
"intelligent_ratio": intelligent_ratio
}
if negative_prompt:
payload["negative_prompt"] = negative_prompt
if sample_strength is not None:
payload["sample_strength"] = sample_strength
response = requests.post(endpoint, json=payload, headers=headers, timeout=300)
response.raise_for_status()
api_response = response.json()
except requests.exceptions.RequestException as e:
print(f"❌ Error calling API: {e}")
if hasattr(e, 'response') and e.response is not None:
print(f" Response: {e.response.text}")
sys.exit(1)
# Download images
return download_images(api_response, output_dir, "composition")
def download_images(api_response: dict, output_dir: str, mode: str):
"""
Download images from API response URLs.
Args:
api_response: JSON response from Jimeng API
output_dir: Output directory path
mode: Generation mode ("text" or "composition")
Returns:
List of downloaded file paths
"""
# Determine output directory
if output_dir is None:
# Find project root
current_dir = Path.cwd()
project_root = current_dir
# Look for project markers
while project_root.parent != project_root:
if any((project_root / marker).exists() for marker in
['.git', '.claude', 'package.json', 'pyproject.toml', 'requirements.txt']):
break
project_root = project_root.parent
output_dir = project_root / "pic"
else:
output_dir = Path(output_dir)
# Create output directory
output_dir.mkdir(parents=True, exist_ok=True)
print(f"📁 Output directory: {output_dir}")
# Download images
downloaded_files = []
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
image_data_list = api_response.get("data", [])
if not image_data_list:
print("⚠️ No images in API response")
return downloaded_files
for idx, image_data in enumerate(image_data_list):
image_url = image_data.get("url")
if not image_url:
print(f"⚠️ No URL for image {idx + 1}")
continue
print(f"🔗 Image {idx + 1}/{len(image_data_list)}: {image_url[:80]}...")
# Download image
try:
img_response = requests.get(image_url, timeout=60)
img_response.raise_for_status()
# Detect if image is WebP format
is_webp = ("format=.webp" in image_url or
image_url.endswith(".webp") or
img_response.content[:4] == b'RIFF') # WebP magic number
# Generate filename (always save as PNG)
filename = f"jimeng_{timestamp}_{idx + 1}.png"
file_path = output_dir / filename
# Convert WebP to PNG if needed
if is_webp and PIL_AVAILABLE:
try:
# Load WebP image and convert to PNG
img = Image.open(BytesIO(img_response.content))
# Convert RGBA to RGB if needed (PNG supports both)
if img.mode in ('RGBA', 'LA', 'P'):
# Keep transparency
img.save(file_path, 'PNG', optimize=True)
else:
img.save(file_path, 'PNG', optimize=True)
print(f"✅ Downloaded and converted (WebP→PNG): {file_path}")
except Exception as e:
print(f"⚠️ WebP conversion failed, saving original: {e}")
# Fallback: save as-is
with open(file_path.with_suffix('.webp'), 'wb') as f:
f.write(img_response.content)
file_path = file_path.with_suffix('.webp')
else:
# Save directly (PNG, JPG, or WebP without PIL)
if is_webp and not PIL_AVAILABLE:
# No Pillow, save as WebP
file_path = file_path.with_suffix('.webp')
print(f"⚠️ Saving as WebP (Pillow not available)")
with open(file_path, 'wb') as f:
f.write(img_response.content)
print(f"✅ Downloaded: {file_path}")
downloaded_files.append(str(file_path))
except requests.exceptions.RequestException as e:
print(f"❌ Error downloading image {idx + 1}: {e}")
# Print summary
print(f"\n📊 Summary:")
print(f" Created at: {api_response.get('created', 'N/A')}")
print(f" Downloaded: {len(downloaded_files)}/{len(image_data_list)} images")
if mode == "composition" and "input_images" in api_response:
print(f" Input images: {api_response['input_images']}")
print(f" Composition type: {api_response.get('composition_type', 'N/A')}")
return downloaded_files
def main():
parser = argparse.ArgumentParser(
description="Generate images using local Jimeng API",
formatter_class=argparse.RawDescriptionHelpFormatter
)
subparsers = parser.add_subparsers(dest="mode", help="Generation mode")
# Text-to-Image subcommand
text_parser = subparsers.add_parser("text", help="Text-to-image generation (文生图)")
text_parser.add_argument("prompt", type=str, help="Text prompt for image generation")
# Image-to-Image subcommand
image_parser = subparsers.add_parser("image", help="Image-to-image generation (图生图)")
image_parser.add_argument("prompt", type=str, help="Text prompt for image transformation")
image_parser.add_argument(
"--images",
nargs="+",
required=True,
help="Input image paths or URLs (1-10 images)"
)
# Common arguments for both modes
for subparser in [text_parser, image_parser]:
subparser.add_argument(
"--session-id",
type=str,
required=True,
help="Jimeng session ID (with region prefix if needed: us-/hk-/jp-/sg-)"
)
subparser.add_argument(
"--model",
type=str,
default="jimeng-4.5",
choices=["jimeng-5.0", "jimeng-4.6", "jimeng-4.5", "jimeng-4.1", "jimeng-4.0", "jimeng-3.1", "jimeng-3.0", "nanobanana"],
help="Model to use (default: jimeng-4.5)"
)
subparser.add_argument(
"--ratio",
type=str,
default="1:1",
choices=["1:1", "4:3", "3:4", "16:9", "9:16", "3:2", "2:3", "21:9"],
help="Aspect ratio (default: 1:1)"
)
subparser.add_argument(
"--resolution",
type=str,
default="2k",
choices=["1k", "2k", "4k"],
help="Resolution level (default: 2k)"
)
subparser.add_argument(
"--intelligent-ratio",
action="store_true",
help="Enable automatic ratio detection based on prompt"
)
subparser.add_argument(
"--negative-prompt",
type=str,
help="Negative prompt (elements to avoid)"
)
subparser.add_argument(
"--sample-strength",
type=float,
help="Sampling strength (0.0-1.0)"
)
subparser.add_argument(
"--api-url",
type=str,
default="http://localhost:5100",
help="Jimeng API base URL (default: http://localhost:5100)"
)
subparser.add_argument(
"--output-dir",
type=str,
help="Output directory for images (defaults to project_root/pic)"
)
args = parser.parse_args()
# Check if mode is specified
if not args.mode:
parser.print_help()
sys.exit(1)
# Validate sample_strength
if args.sample_strength is not None:
if args.sample_strength < 0.0 or args.sample_strength > 1.0:
print("❌ Error: sample_strength must be between 0.0 and 1.0")
sys.exit(1)
# Generate images
try:
if args.mode == "text":
downloaded_files = generate_text_to_image(
prompt=args.prompt,
session_id=args.session_id,
model=args.model,
ratio=args.ratio,
resolution=args.resolution,
intelligent_ratio=args.intelligent_ratio,
negative_prompt=args.negative_prompt,
sample_strength=args.sample_strength,
api_url=args.api_url,
output_dir=args.output_dir
)
else: # image mode
# Validate image count
if len(args.images) < 1 or len(args.images) > 10:
print("❌ Error: Number of images must be between 1 and 10")
sys.exit(1)
downloaded_files = generate_image_to_image(
prompt=args.prompt,
session_id=args.session_id,
images=args.images,
model=args.model,
ratio=args.ratio,
resolution=args.resolution,
intelligent_ratio=args.intelligent_ratio,
negative_prompt=args.negative_prompt,
sample_strength=args.sample_strength,
api_url=args.api_url,
output_dir=args.output_dir
)
print(f"\n✨ Successfully generated and downloaded {len(downloaded_files)} image(s)!")
except KeyboardInterrupt:
print("\n\n⚠️ Generation cancelled by user")
sys.exit(1)
if __name__ == "__main__":
main()
|