OpenArt Logo
Sign in

Model: OpenArt SDXL

Prompt:

CREATE a real picture of Algorithm, like a flow chart showing a recipe to making something
Width: 1024
Height: 1024
Scale: 7
Steps: 25
Seed: 1667830196
Sampler: DPM++ 2M SDE Karras

Create your first image using OpenArt.

With over 100+ models and styles to choose from, you can create stunning images.

More images like this
Prompt: A flowchart leading to an AI chip, symbolizing decision pathways.
Prompt: Using this input,make a mindmap of a security control,"The security control structure consists of the following components: (i) a control section; (ii) a supplemental guidance section; (iii) a control enhancements section; (iv) a references section; and (v) a priority and baseline allocation section"
Prompt: Flowchart
Prompt: Give me a flow chart using an aurdino with following sensors for a class monitoring robot 
Camera sensors
Microphone sensors 
Proximity sensors
Motion sensors
Infrared sensors
Prompt: from PIL import Image, ImageDraw, ImageFont

# Create a blank image with white background
width, height = 1000, 600
image = Image.new('RGB', (width, height), 'white')
draw = ImageDraw.Draw(image)

# Set up basic font
font_path = "/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf"
title_font = ImageFont.truetype(font_path, 16)
subtitle_font = ImageFont.truetype(font_path, 14)
text_font = ImageFont.truetype(font_path, 12)

# Title
draw.text((10, 10), "Updated Class Diagram for 'Create Title' Use Case", font=title_font, fill='black')

# Classes and Attributes
classes = {
    "Title": ["+ titleID: int", "+ titleName: string", "+ createDate: date", "+ getDetails(): string", "+ setDetails(details: string): void"],
    "Movie": ["+ director: string", "+ duration: int", "+ getDetails(): string", "+ setDetails(details: string): void"],
    "Game": ["+ genre: string", "+ platform: string", "+ getDetails(): string", "+ setDetails(details: string): void"],
    "Music": ["+ artist: string", "+ album: string", "+ getDetails(): string", "+ setDetails(details: string): void"],
    "TitleFactory": ["+ createTitle(type: string, details: string): Title", "+ createMovie(details: string): Movie", "+ createGame(details: string): Game", "+ createMusic(details: string): Music"]
}

# Positions for the classes
positions = {
    "Title": (50, 50),
    "Movie": (50, 200),
    "Game": (350, 200),
    "Music": (650, 200),
    "TitleFactory": (350, 400)
}

# Draw classes
for class_name, attributes in classes.items():
    x, y = positions[class_name]
    draw.rectangle((x, y, x+250, y+25), outline='black', width=2)
    draw.text((x+5, y+5), class_name, font=subtitle_font, fill='black')
    
    for i, attribute in enumerate(attributes):
        draw.text((x+5, y+35+i*20), attribute, font=text_font, fill='black')

# Save the image
image_path = "updated_class_diagram.png"
image.save(image_path)
image.show()  # This will display the image if the environment supports it
Prompt: draw an organizational chart for Bishop's Centenary College
Prompt: 
An illustration  diagram with rice at the center and many branches of its producible product, such as rice liquor, frying mix powder, rice based snack( cake, cracker, chip), beverage (rice milk, ) rice cereal, rice noodle, pasta, risoto, rice cookies, rice bran oil, rice vinegar and many more (20 more, please help to add)
Prompt: I want a modern information  architecture that shows people how information exists in components that can be reused across information domains. This is developers to understand how they exist in the informatoin flow and can use the information from anywhere. The information is format agnostic. This is in the telecoms and IT world.
Prompt: Create a flowchart depicting the different internal and external communication channels inside a business organisation and the flow of information.