OpenArt Logo
Sign in

g

glenn brooks

Model: OpenArt SDXL

Prompt:

Flowchart of the Charcoal Production Process
Scale: 7
Steps: 25
Seed: 712422122
Width: 1024
Height: 1024
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: Generate a classic heirarchical organizational chart for Assure Infusions. The chart is only 2 levels of hierarchy. At the top of the chart is a rectangle for the Board of Directors. Below the board are 3 corporate officers: CFO, COO and CGO. All 3 report to the board as shown by solid lines from each to the board. However, the COO is in the middle and is regarded as senior, or the C-Suite team leader. This relationship is shown by raising the COO box to 50% higher than the CFO and CGO boxes. The seniority is also shown by dotted lines from CFO to COO and from CGO to COO. So the chart only shows the 4 boxes and solid and dotted lines. generate the image
Prompt: Create a flowchart diagram that incorporates the following: At the top is the "Project Director". 
Under this person are 3 categories: "Project 1", "Project 2" and "Administration ". 
Under Project 1, there is only 1 categories: “Lead PI”
Under Project 2, there are 2 categories: “Lead PI” and “Co-investigator”
These categories are common to Project 1 and 2: NK, MO, AR
Under the “Administration Category”, the sub-categories are: “Program Manager”, “Financial Analyst”, “Financial Supervisor” and “Science Manager”
“Administration” led by “Project Director” oversees and works with “Project 1” and “Project 2”
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: ơ đồ lớp (Class Diagram): Minh họa các lớp chính trong hệ thống như Book, Reader, và Transaction, cùng với các thuộc tính và phương thức tương ứng. Sơ đồ cũng mô tả mối quan hệ giữa các lớp.
Prompt: Create a detailed scientific diagram of a human cell showing the location of DNA and genes. The image should include:

A labeled nucleus, where DNA is stored.
A chromosome inside the nucleus, showing its coiled structure.
A DNA double helix, zoomed in from the chromosome.
Highlighted genes as small sections of the DNA strand.
Arrows and labels clearly marking each component.
A clean, educational style with bright colors and a dark background for contrast."
Prompt: Create a flowchart depicting the different internal and external communication channels inside a business organisation and the flow of information.