0% found this document useful (0 votes)
13 views

Source Code Viewer.html

The document describes the 'Text-to-Image Flux', an online AI image generator that creates high-quality images from text in various styles including realistic, anime, and cartoon. It is powered by Flux and Stable Diffusion AI models and is available for free. The document includes metadata for SEO and social media sharing, as well as scripts for functionality and analytics.

Uploaded by

Ananthu Ananthu
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Source Code Viewer.html

The document describes the 'Text-to-Image Flux', an online AI image generator that creates high-quality images from text in various styles including realistic, anime, and cartoon. It is powered by Flux and Stable Diffusion AI models and is available for free. The document includes metadata for SEO and social media sharing, as well as scripts for functionality and analytics.

Uploaded by

Ananthu Ananthu
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 25

<!

DOCTYPE html>
<html lang="en">
<head>
<!--Blazor:
{"type":"webassembly","assembly":"Microsoft.AspNetCore.Components.Web","typeName":"
Microsoft.AspNetCore.Components.Web.HeadOutlet","parameterDefinitions":"W10=","para
meterValues":"W10=","prerenderId":"5a5d488276294a3db5827227b54b4c3a"}--
><title>Text-to-Image Flux - Online Free AI Image Generator - Dezgo</title><meta
name="description" content="Generate high-quality images from text in any style,
realistic, anime, cartoon, illustrations, logos, and more. Powered by Flux and
Stable Diffusion AI models." />

<meta name="twitter:card" content="summary_large_image">


<meta name="twitter:site" content="@dezgo">
<meta name="twitter:title" content="Text-to-Image Flux - Online Free AI Image
Generator" />
<meta name="twitter:description" content="Generate high-quality images from
text in any style, realistic, anime, cartoon, illustrations, logos, and more.
Powered by Flux and Stable Diffusion AI models." />
<meta name="twitter:image" content="https://static.dezgo.com/favicon.png" />

<meta property="og:type" content="website">


<meta property="og:title" content="Text-to-Image Flux - Online Free AI Image
Generator" />
<meta property="og:description" content="Generate high-quality images from text
in any style, realistic, anime, cartoon, illustrations, logos, and more. Powered by
Flux and Stable Diffusion AI models." />
<meta property="og:image" content="https://static.dezgo.com/favicon.png" />
<meta property="og:logo" content="https://static.dezgo.com/favicon.png" /><link
rel="canonical" href="https://dezgo.com/" />
<meta property="og:url" content="https://dezgo.com/" /><script
type="application/ld+json">{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Text-to-Image Flux",
"description": "Generate high-quality images from text in any style, realistic,
anime, cartoon, illustrations, logos, and more. Powered by Flux and Stable
Diffusion AI models.",
"applicationCategory": "MultimediaApplication",
"applicationSubCategory": "AI App",
"image": "https://static.dezgo.com/favicon.png",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"operatingSystem": "All"
}</script><!--Blazor:{"prerenderId":"5a5d488276294a3db5827227b54b4c3a"}-->

<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-
scale=1.0, user-scalable=no" />
<base href="/" />
<link href="/app.css" rel="stylesheet" />
<link href="Dezgo.Web.Client.styles.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?
family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link href='https://fonts.googleapis.com/css?family=Abel|Rubik|Lato|
Montserrat:300' rel='stylesheet' type='text/css'>

<link rel="preload" as="image" href="/img/power_onoff_cursor.gif">


<link rel="preload" as="image" href="/img/cost.gif">
<link rel="preload" as="image" href="/img/steps.gif">
<link rel="preload" as="image" href="/img/ellipsis.gif">
<link rel="preload" as="image" href="/img/my_account.gif">
<link rel="preload" as="image" href="/img/history.gif">

<meta name="p:domain_verify" content="b97bcc8906e7401bb2e683b10e33fa44"/>


<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-
V8L8E563W6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-V8L8E563W6');
</script>

<link rel="apple-touch-icon" href="https://static.dezgo.com/favicon.png">


<meta name="apple-mobile-web-app-title" content="Dezgo">

<meta name="propeller" content="4b9c21729407fe9ab95dcc86fcb4dc9c">


<meta name="a.validate.02" content="-O2x8CNSSiX_t8ICV0stjTdWiHrs3eR_MKBJ" />

<script type="text/javascript">
function isElementInViewport (el, verticalOffset) {
var rect = el.getBoundingClientRect();

var containerWidth = (window.innerWidth ||


document.documentElement.clientWidth);
var containerHeight = (window.innerHeight ||
document.documentElement.clientHeight);

containerHeight -= verticalOffset;

return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= containerHeight &&
rect.right <= containerWidth
);
}

function getPersistentRandomNumber() {
var key = "com.dezgo.rand";

try {
if (!localStorage.getItem(key)) {
var randomNumber = Math.random();
localStorage.setItem(key, randomNumber.toString());
return randomNumber;
} else {
return parseFloat(localStorage.getItem(key));
}
} catch (error) {
return 0;
}
}

function scrollToTop()
{
window.scrollTo({
top: 0,
left: 0,
behavior: 'smooth'
});
}

function dScrollTo(elementId)
{
var el = document.getElementById(elementId);
var check = isElementInViewport(el, 250);

console.log("is element visible:", check);

if (!check)
{
el.scrollIntoView({
//alignToTop: true,

block: "start",
inline: "nearest",
behavior: "smooth"
})
}

}
async function getImageSize(imgBase64)
{
var img = new Image();
img.src = imgBase64;

await img.decode();

return [img.width, img.height];


}

function fireClick(element)
{
element.click();
}

function setSecureCookie(key, value)


{
document.cookie = key + "=" + encodeURIComponent(value) +
";secure;domain=dezgo.com";
}

IS_TURNSTILE_READY = false;
function getTurnstileStatus()
{
return IS_TURNSTILE_READY;
}
function turnstileRender(container, callbackObj, options)
{
options["callback"] = function (token) {
callbackObj.invokeMethodAsync("OnTurnstileSuccess", token);
};

var widgetId = turnstile.render(container, options);


console.log("Turnstile widget id:", widgetId);
return widgetId;
}

function onloadTurnstileCallback()
{
IS_TURNSTILE_READY = true;
}

async function safeOpenTab(url, method, headers, body) {

if (url === null) {


return;
}

var tab = window.open("/dezgo_store_redirect.html", '_blank');


if (!tab) {
alert("Failed to open tab: " + tab);
return;
}

var fetch_url = url;


var fetch_params = {
method: method,
headers: headers,
body: body,
};

// React to DOMContentLoaded event


tab.addEventListener('DOMContentLoaded', function(event) {
console.log("tab dom loaded");
tab.executeFetchRedirect(fetch_url, fetch_params);
});

tab.addEventListener('load', function(event) {
console.log("tab loaded");
tab.executeFetchRedirect(fetch_url, fetch_params);
});
}

window.document.addEventListener('keydown', function (e) {


if (!e) return;
e = {
key: e.key,
code: e.code,
location: e.location,
repeat: e.repeat,
ctrlKey: e.ctrlKey,
shiftKey: e.shiftKey,
altKey: e.altKey,
metaKey: e.metaKey,
type: e.type
};
DotNet.invokeMethod('Dezgo.Web.Client', 'JsKeyDown', e);
});

</script>

<script src="https://challenges.cloudflare.com/turnstile/v0/api.js?
render=explicit&onload=onloadTurnstileCallback" async defer></script>

<script type="text/javascript">

ADS_STARTED = false;

function startAds() {
}

</script>

<!-- Start of dezgo Zendesk Widget script -->


<script defer id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?
key=fc8c7f77-8414-45ee-9865-23de1f9ed867"> </script>
<script type="text/javascript">

document.addEventListener("DOMContentLoaded", function () {
window.zESettings = {
webWidget: {
zIndex: 1000
}
};
zE(function() {
// Closed by default
zE.hide();
});

zeIdentify = function (email, name) {


zE(function() {
zE.identify({
name: name,
email: email
});
});
};

zeActivate = function () {
zE(function() {
zE.activate();
});
}
});
</script>
<!-- End of dezgo Zendesk Widget script -->

<!-- FREESTAR -->


<link rel="preconnect" href="https://a.pub.network/" crossorigin />
<link rel="preconnect" href="https://b.pub.network/" crossorigin />
<link rel="preconnect" href="https://c.pub.network/" crossorigin />
<link rel="preconnect" href="https://d.pub.network/" crossorigin />
<link rel="preconnect" href="https://c.amazon-adsystem.com" crossorigin />
<link rel="preconnect" href="https://s.amazon-adsystem.com" crossorigin />
<link rel="preconnect" href="https://secure.quantserve.com/" crossorigin />
<link rel="preconnect" href="https://rules.quantcount.com/" crossorigin />
<link rel="preconnect" href="https://pixel.quantserve.com/" crossorigin />
<link rel="preconnect" href="https://cmp.quantcast.com/" crossorigin />
<link rel="preconnect" href="https://btloader.com/" crossorigin />
<link rel="preconnect" href="https://api.btloader.com/" crossorigin />
<link rel="preconnect" href="https://confiant-
integrations.global.ssl.fastly.net" crossorigin />

<link rel="stylesheet" href="https://a.pub.network/dezgo-com/cls.css">


<!-- CSS for geo depending button -->
<style>
#pmLink {
visibility: hidden;
text-decoration: underline;
border: none;
background: transparent;
color: rgba(255, 255, 255, 0.698);
}
</style>

<script data-cfasync="false" type="text/javascript">


var freestar = freestar || {};
freestar.queue = freestar.queue || [];
freestar.config = freestar.config || {};
freestar.config.enabled_slots = [];
freestar.config.enabled_slots.push({ placementName: "dezgo_standalone_video",
slotId: "dezgo_standalone_video" });
freestar.config.disabledProducts = {
googleInterstitial: true,
dynamicAds: true
};

freestar.initCallback = function () {
console.log("fs.initCallback");
}
</script>

<script type="text/javascript">

PRIMIS_DEFAULT_FLOAT = "disable";
FS_INITIALIZED = false;

window.addEventListener('readyConfigPlayerApi', function (e){

var primisConfig = e.detail;

var config = {
floatInitalStatus : PRIMIS_DEFAULT_FLOAT,
};

console.log("primis: readyConfigPlayerApi", config);


primisConfig.setConfig(config)
});

function primisFwd(id, e){


DotNet.invokeMethod('Dezgo.Web.Client', 'OnPrimisCallback', id, e);
}

function primisSetDefaultFloat(is_enabled) {
PRIMIS_DEFAULT_FLOAT = is_enabled ? "enable" : "disable";
}

window.addEventListener('primisPlayerInit', function (e) {


console.log("primis: primisPlayerInit", e);

var p = e.detail;

function primisReg(id) {
p.addEventListener(id, function (e) {
if(e !== null && e !== undefined){
e = JSON.stringify(e);
}
else {
e = "{}";
}

primisFwd(id, e);
});
}

var eventIds = [
"adStarted",
"adCompleted",
"adFirstQuartile",
"adMidQuartile",
"adThirdQuartile",
"adClickthrough",
"adPause",
"adPlay",
"adSkip",

"videoStart",
"videoEnd",
"videoSkip",
"videoClickthrough",

"volumeChange",
"playerModeChange",
"floatStatusChange",
"userFloatClose"
];

eventIds.forEach(primisReg);
primisFwd("primisPlayerInit", "{}");
});

function initFs() {
if (FS_INITIALIZED)
return;

console.log("fs: initializing");

var script = document.createElement('script');


script.src = "https://a.pub.network/dezgo-com/pubfig.min.js";
script.async = true;
document.head.appendChild(script);

FS_INITIALIZED = true;
}

function getUserAgent() {
return navigator.userAgent;
}

function getMaxTouchPoints() {
return navigator.maxTouchPoints || 0;
}

function fsTest() {
return true;
}

function fsFooterSupported() {
return true;
}

function fsNewFooter() {
initFs();
window.freestar.queue.push(function(){
window.freestar.newStickyFooter("dezgo_sticky_footer_oncall");
});
}

function fsDeleteFooter() {
if (!FS_INITIALIZED) return;

window.freestar.queue.push(function(){
window.freestar.deleteStickyFooter("dezgo_sticky_footer_oncall");
});
}

function fsOnPageview()
{
if (!FS_INITIALIZED) return;

freestar.queue.push(function(){
freestar.trackPageview()
});
}
function fsHelperCallback(name) {
return function () {
console.log("fs: callback " + name + ":", arguments);
}
}

function fsNewVideo(containerId, placementName) {


initFs();

freestar.queue.push(function()
{
var attrName = "data-video-initialized";

var container = document.getElementById(containerId);


if (!container)
{
console.log("fs: newVideo: container not found");
return;
}

// Check if the container is already initialized using data


attribute
if (container.getAttribute(attrName) === "true") {
console.log("fs: newVideo: container already initialized");
return;
}

container.setAttribute(attrName, "true");

var div1 = document.createElement("div");


div1.id = placementName;
container.appendChild(div1);

var div2 = document.createElement("div");


div2.id = "freestar-video-parent";
div1.appendChild(div2);

var div3 = document.createElement("div");


div3.id = "freestar-video-child";
div2.appendChild(div3);

primisFwd("freestar_newVideo", "{}");
freestar.newVideo(placementName);

console.log("fs: newVideo: container initialized");


});
}

function fsDeleteVideo(containerId) {
if (!FS_INITIALIZED) return;

var attrName = "data-video-initialized";

var container = document.getElementById(containerId);


if (!container) {
console.log("fs: deleteVideo: container not found");
return;
}

container.innerHTML = "";
container.setAttribute(attrName, "false");

console.log("fs: deleteVideo: container deleted");


}

/*function fsDeleteVideo(placementName)
{
freestar.queue.push(function()
{
// not supported
freestar.deleteVideo({
placementName: placementName,
name: placementName,
callback: fsHelperCallback("deleteVideo")
});
});
}*/

function fsNewStandAlonePlayer(placementName, caller)


{
initFs();

freestar.queue.push(function()
{
freestar.newStandAlonePlayer(
{
placementName: placementName,
name: placementName,
callback: function(a, state) {
console.log("fs: callback newStandAlonePlayer:", arguments);

if (caller)
caller.invokeMethodAsync("OnJsCallback",
JSON.stringify(state) );
}
})
});
}

function fsDeleteStandAlonePlayer(placementName)
{
if (!FS_INITIALIZED) return;

freestar.queue.push(function()
{
freestar.deleteStandAlonePlayer({
placementName: placementName,
name: placementName,
callback: fsHelperCallback("deleteStandAlonePlayer")
});
});
}
function getExpPrimisValue() {

return 0.75;
}
</script>

<!-- END FREESTAR -->

<!-- BEGIN IMPACT -->


<script type="text/javascript">
(function(a,b,c,d,e,f,g){e['ire_o']=c;e[c]=e[c]||function(){(e[c].a=e[c].a||
[]).push
(arguments)};f=d.createElement(b);g=d.getElementsByTagName(b)
[0];f.async=1;f.src=a;g
.parentNode.insertBefore(f,g);})('https://utt.impactcdn.com/A5028821-02d8-402b-
ad16-51c32432d5771.js','script','ire',document,window);
</script>
<script type="text/javascript">
IMPACT_CLICK_ID = "";

function interopImpactGetClickId() {
return IMPACT_CLICK_ID;
}

function interopImpactIre(opId, cObj) {


if (cObj)
ire(opId, JSON.parse(cObj));
else
ire(opId);
}

function interopImpactRefreshClickId() {
ire('generateClickId', function (cId) {
if (cId && cId !== IMPACT_CLICK_ID)
{
IMPACT_CLICK_ID = cId;
console.log("Impact: refresh click id:", cId);
}
});
}
</script>
<!-- END IMPACT -->

</head>
<body>

<!-- BEGIN IMPACT -->


<script type="text/javascript">
interopImpactRefreshClickId();
setTimeout(interopImpactRefreshClickId, 1000 * 2);
setTimeout(interopImpactRefreshClickId, 1000 * 5);
setTimeout(interopImpactRefreshClickId, 1000 * 10);
setTimeout(interopImpactRefreshClickId, 1000 * 30);
</script>
<!-- END IMPACT -->
<!--Blazor:
{"type":"webassembly","assembly":"Dezgo.Web.Client","typeName":"Dezgo.Web.Client.Ap
p","parameterDefinitions":"W10=","parameterValues":"W10=","prerenderId":"309eac7f70
c548b1949943ffcce2751f"}--><style>
::-webkit-scrollbar {width: 8px;height: 8px;z-index: 1;}
::-webkit-scrollbar-track {background: transparent;}
::-webkit-scrollbar-thumb {background: #c4c4c4;border-radius: 1px;}
::-webkit-scrollbar-thumb:hover {background: #a6a6a6;}
html, body * {scrollbar-color: #c4c4c4 transparent;scrollbar-width: thin;}
</style>
<style>
.mud-chart-serie:hover {
filter: url(#lighten);
}
</style>

<style>
:root{
--mud-palette-black: #27272fff;
--mud-palette-white: #ffffffff;
--mud-palette-primary: #1976d2ff;
--mud-palette-primary-rgb: 25,118,210;
--mud-palette-primary-text: #ffffffff;
--mud-palette-primary-darken: rgb(20,97,173);
--mud-palette-primary-lighten: rgb(45,138,230);
--mud-palette-primary-hover: rgba(25,118,210,0.058823529411764705);
--mud-palette-secondary: #ff4081ff;
--mud-palette-secondary-rgb: 255,64,129;
--mud-palette-secondary-text: #ffffffff;
--mud-palette-secondary-darken: rgb(255,31,105);
--mud-palette-secondary-lighten: rgb(255,102,153);
--mud-palette-secondary-hover: rgba(255,64,129,0.058823529411764705);
--mud-palette-tertiary: #1ec8a5ff;
--mud-palette-tertiary-rgb: 30,200,165;
--mud-palette-tertiary-text: #ffffffff;
--mud-palette-tertiary-darken: rgb(25,169,140);
--mud-palette-tertiary-lighten: rgb(42,223,187);
--mud-palette-tertiary-hover: rgba(30,200,165,0.058823529411764705);
--mud-palette-info: #3299ffff;
--mud-palette-info-rgb: 50,153,255;
--mud-palette-info-text: #ffffffff;
--mud-palette-info-darken: rgb(10,133,255);
--mud-palette-info-lighten: rgb(92,173,255);
--mud-palette-info-hover: rgba(50,153,255,0.058823529411764705);
--mud-palette-success: #0bba83ff;
--mud-palette-success-rgb: 11,186,131;
--mud-palette-success-text: #ffffffff;
--mud-palette-success-darken: rgb(9,154,108);
--mud-palette-success-lighten: rgb(13,222,156);
--mud-palette-success-hover: rgba(11,186,131,0.058823529411764705);
--mud-palette-warning: #ffa800ff;
--mud-palette-warning-rgb: 255,168,0;
--mud-palette-warning-text: #ffffffff;
--mud-palette-warning-darken: rgb(214,143,0);
--mud-palette-warning-lighten: rgb(255,182,36);
--mud-palette-warning-hover: rgba(255,168,0,0.058823529411764705);
--mud-palette-error: #f64e62ff;
--mud-palette-error-rgb: 246,78,98;
--mud-palette-error-text: #ffffffff;
--mud-palette-error-darken: rgb(244,47,70);
--mud-palette-error-lighten: rgb(248,119,134);
--mud-palette-error-hover: rgba(246,78,98,0.058823529411764705);
--mud-palette-dark: #27272fff;
--mud-palette-dark-rgb: 39,39,47;
--mud-palette-dark-text: #ffffffff;
--mud-palette-dark-darken: rgb(23,23,28);
--mud-palette-dark-lighten: rgb(56,56,67);
--mud-palette-dark-hover: rgba(39,39,47,0.058823529411764705);
--mud-palette-text-primary: #ffffffb2;
--mud-palette-text-secondary: #ffffff7f;
--mud-palette-text-disabled: #ffffff33;
--mud-palette-action-default: #adadb1ff;
--mud-palette-action-default-hover: rgba(0,0,0,0.058823529411764705);
--mud-palette-action-disabled: #ffffff42;
--mud-palette-action-disabled-background: #ffffff1e;
--mud-palette-surface: #373740ff;
--mud-palette-background: #32333dff;
--mud-palette-background-grey: #27272fff;
--mud-palette-drawer-background: #27272fff;
--mud-palette-drawer-text: #ffffff7f;
--mud-palette-drawer-icon: #ffffff7f;
--mud-palette-appbar-background: #27272fff;
--mud-palette-appbar-text: #ffffffb2;
--mud-palette-lines-default: #ffffff1e;
--mud-palette-lines-inputs: #ffffff4c;
--mud-palette-table-lines: #ffffff1e;
--mud-palette-table-striped: #ffffff33;
--mud-palette-table-hover: #0000000a;
--mud-palette-divider: #ffffff1e;
--mud-palette-divider-light: #ffffff0f;
--mud-palette-grey-default: #9E9E9E;
--mud-palette-grey-light: #BDBDBD;
--mud-palette-grey-lighter: #E0E0E0;
--mud-palette-grey-dark: #757575;
--mud-palette-grey-darker: #616161;
--mud-palette-overlay-dark: rgba(33,33,33,0.4980392156862745);
--mud-palette-overlay-light: rgba(255,255,255,0.4980392156862745);
--mud-elevation-0: none;
--mud-elevation-1: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px
rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12);
--mud-elevation-2: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px
rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
--mud-elevation-3: 0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px
rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);
--mud-elevation-4: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px
rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
--mud-elevation-5: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px
rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12);
--mud-elevation-6: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px
rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);
--mud-elevation-7: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px
rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12);
--mud-elevation-8: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px
rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
--mud-elevation-9: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px
rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12);
--mud-elevation-10: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px
rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12);
--mud-elevation-11: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px
rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12);
--mud-elevation-12: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px
rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12);
--mud-elevation-13: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px
rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12);
--mud-elevation-14: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px
rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12);
--mud-elevation-15: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px
rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12);
--mud-elevation-16: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px
rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12);
--mud-elevation-17: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px
rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12);
--mud-elevation-18: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px
rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12);
--mud-elevation-19: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px
rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12);
--mud-elevation-20: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px
rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12);
--mud-elevation-21: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px
rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12);
--mud-elevation-22: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px
rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12);
--mud-elevation-23: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px
rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12);
--mud-elevation-24: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px
rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12);
--mud-elevation-25: 0 5px 5px -3px rgba(0,0,0,.06), 0 8px 10px 1px
rgba(0,0,0,.042), 0 3px 14px 2px rgba(0,0,0,.036);
--mud-default-borderradius: 4px;
--mud-drawer-width-left: 240px;
--mud-drawer-width-right: 240px;
--mud-drawer-width-mini-left: 56px;
--mud-drawer-width-mini-right: 56px;
--mud-appbar-height: 64px;
--mud-typography-default-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-default-size: .875rem;
--mud-typography-default-weight: 400;
--mud-typography-default-lineheight: 1.43;
--mud-typography-default-letterspacing: .01071em;
--mud-typography-default-text-transform: none;
--mud-typography-h1-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h1-size: 6rem;
--mud-typography-h1-weight: 300;
--mud-typography-h1-lineheight: 1.167;
--mud-typography-h1-letterspacing: -.01562em;
--mud-typography-h1-text-transform: none;
--mud-typography-h2-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h2-size: 3.75rem;
--mud-typography-h2-weight: 300;
--mud-typography-h2-lineheight: 1.2;
--mud-typography-h2-letterspacing: -.00833em;
--mud-typography-h2-text-transform: none;
--mud-typography-h3-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h3-size: 3rem;
--mud-typography-h3-weight: 400;
--mud-typography-h3-lineheight: 1.167;
--mud-typography-h3-letterspacing: 0;
--mud-typography-h3-text-transform: none;
--mud-typography-h4-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h4-size: 2.125rem;
--mud-typography-h4-weight: 400;
--mud-typography-h4-lineheight: 1.235;
--mud-typography-h4-letterspacing: .00735em;
--mud-typography-h4-text-transform: none;
--mud-typography-h5-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h5-size: 1.5rem;
--mud-typography-h5-weight: 400;
--mud-typography-h5-lineheight: 1.334;
--mud-typography-h5-letterspacing: 0;
--mud-typography-h5-text-transform: none;
--mud-typography-h6-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-h6-size: 1.25rem;
--mud-typography-h6-weight: 500;
--mud-typography-h6-lineheight: 1.6;
--mud-typography-h6-letterspacing: .0075em;
--mud-typography-h6-text-transform: none;
--mud-typography-subtitle1-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-subtitle1-size: 1rem;
--mud-typography-subtitle1-weight: 400;
--mud-typography-subtitle1-lineheight: 1.75;
--mud-typography-subtitle1-letterspacing: .00938em;
--mud-typography-subtitle1-text-transform: none;
--mud-typography-subtitle2-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-subtitle2-size: .875rem;
--mud-typography-subtitle2-weight: 500;
--mud-typography-subtitle2-lineheight: 1.57;
--mud-typography-subtitle2-letterspacing: .00714em;
--mud-typography-subtitle2-text-transform: none;
--mud-typography-body1-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-body1-size: 1rem;
--mud-typography-body1-weight: 400;
--mud-typography-body1-lineheight: 1.5;
--mud-typography-body1-letterspacing: .00938em;
--mud-typography-body1-text-transform: none;
--mud-typography-body2-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-body2-size: .875rem;
--mud-typography-body2-weight: 400;
--mud-typography-body2-lineheight: 1.43;
--mud-typography-body2-letterspacing: .01071em;
--mud-typography-body2-text-transform: none;
--mud-typography-button-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-button-size: .875rem;
--mud-typography-button-weight: 500;
--mud-typography-button-lineheight: 1.75;
--mud-typography-button-letterspacing: .02857em;
--mud-typography-button-text-transform: uppercase;
--mud-typography-caption-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-caption-size: .75rem;
--mud-typography-caption-weight: 400;
--mud-typography-caption-lineheight: 1.66;
--mud-typography-caption-letterspacing: .03333em;
--mud-typography-caption-text-transform: none;
--mud-typography-overline-family: 'Roboto','Helvetica','Arial','sans-serif';
--mud-typography-overline-size: .75rem;
--mud-typography-overline-weight: 400;
--mud-typography-overline-lineheight: 2.66;
--mud-typography-overline-letterspacing: .08333em;
--mud-typography-overline-text-transform: none;
--mud-zindex-drawer: 1100;
--mud-zindex-appbar: 1300;
--mud-zindex-dialog: 1400;
--mud-zindex-popover: 1200;
--mud-zindex-snackbar: 1500;
--mud-zindex-tooltip: 1600;
}
</style>

<div class="mud-popover-provider"><div id="popovercontent-22bfb810-cfbd-4735-8059-


99e67dff6976" data-ticks="0" class="mud-popover mud-popover-top-center mud-popover-
anchor-bottom-center mud-popover-overflow-flip-onopen mud-popover-relative-width
mud-paper mud-elevation-8 overflow-y-auto" style="transition-
duration:251ms;transition-delay:0ms;max-height:300px;"></div><div
id="popovercontent-e13b5eac-fd46-47d4-ac77-0af7cb27009f" data-ticks="0" class="mud-
popover mud-popover-top-center mud-popover-anchor-bottom-center mud-popover-
overflow-flip-onopen mud-popover-relative-width mud-paper mud-elevation-8 overflow-
y-auto" style="transition-duration:251ms;transition-delay:0ms;max-
height:300px;"></div><div id="popovercontent-18618f9a-9d32-4334-94fc-f544c3a884b5"
data-ticks="0" class="mud-popover mud-popover-top-center mud-popover-anchor-bottom-
center mud-popover-overflow-flip-onopen mud-popover-relative-width mud-paper mud-
elevation-8 overflow-y-auto" style="transition-duration:251ms;transition-
delay:0ms;max-height:300px;"></div><div id="popovercontent-d85554e6-92fc-4808-867a-
62eb2b338f27" data-ticks="0" class="mud-popover mud-popover-top-center mud-popover-
anchor-bottom-center mud-popover-overflow-flip-onopen mud-popover-relative-width
mud-paper mud-elevation-8 overflow-y-auto" style="transition-
duration:251ms;transition-delay:0ms;max-height:300px;"></div></div>
<div id="mud-snackbar-container" class="mud-snackbar-location-top-right"></div>

<div class="mud-layout mud-drawer-open-responsive-md-left mud-drawer-left-clipped-


never" style=""><header class="mud-appbar mud-appbar-fixed-top mud-elevation-
0"><div class="mud-toolbar mud-toolbar-gutters mud-toolbar-appbar"><button
type="button" class="mud-button-root mud-icon-button mud-inherit-text hover:mud-
inherit-hover mud-ripple mud-ripple-icon mud-icon-button-edge-start"
__internal_stopPropagation_onclick><span class="mud-icon-button-label"><svg
class="mud-icon-root mud-svg-icon mud-icon-size-medium" focusable="false"
viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path
d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg></span></button>
<p class="mud-typography mud-typography-body1">Text-to-Image Flux</p>
<div class="flex-grow-1"></div></div></header>

<aside class="mud-drawer mud-drawer-fixed mud-drawer-pos-left mud-drawer--


open mud-drawer--initial mud-drawer-md mud-drawer-clipped-never mud-theme-surface
mud-elevation-1 mud-drawer-responsive" style=""><div class="mud-drawer-
content"><div class="mud-drawer-header"><img alt="Logo"
src="https://static.dezgo.com/favicon_64.webp" loading="lazy" class="mud-image
object-fill object-center rounded-lg mud-paper-outlined" style="margin-right:
1rem;" width="40" height="40">

<h6 class="mud-typography mud-typography-h6" style="margin-top:


4px">Dezgo</h6></div>
<div class="mud-navmenu mud-navmenu-default mud-navmenu-margin-
none"><div class="mud-nav-item mud-ripple"><a href="/account" rel="" class="mud-
nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48
2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34
3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08
1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg><div class="mud-nav-
link-text">Login</div></a></div><hr class="mud-divider my-4" /><div class="mud-nav-
item mud-ripple"><a href="/text2image/sdxl" rel="" class="mud-nav-link"><svg
class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-
link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 2H4c-1.1 0-1.99.9-
1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4
0h-2V9h2v2z"/></svg><div class="mud-nav-link-text">Text-to-Image XL</div></a></div>
<hr class="mud-divider my-4" /><div class="mud-nav-item mud-ripple"><a
href="/txt2img" rel="" class="mud-nav-link"><svg class="mud-icon-root mud-icon-
default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-nav-link-icon-
default" focusable="false" viewBox="0 0 24 24" aria-hidden="true"><path d="M0
0h24v24H0z" fill="none"/><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0
2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z"/></svg><div
class="mud-nav-link-text">Text-to-Image</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/controlnet" rel="" class="mud-
nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M15.54
5.54L13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10l-1.76-1.77L18.46 12l-1.76-
1.77 1.76-1.77L22 12zm-10 2.92l1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-
10l1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z"/><circle cx="12" cy="12"
r="3"/></svg><div class="mud-nav-link-text">Controlled
Text-to-Image</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/image2image" rel="" class="mud-
nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M22 16V4c0-
1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03
2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"/></svg><div class="mud-
nav-link-text">Image-to-Image</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/upscale" rel="" class="mud-nav-
link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium
mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0 24 24"
aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 12h-2v3h-
3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-
2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"/></svg><div class="mud-nav-link-
text">Upscale</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/text-inpainting" rel=""
class="mud-nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-
icon-size-medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false"
viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path
d="M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3
3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"/></svg><div class="mud-nav-link-
text">Inpainting from text</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/edit-image" rel="" class="mud-
nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><rect fill="none" height="24" width="24"/><path
d="M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-
0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z
M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z"/></svg><div class="mud-nav-link-
text">Edit image from text</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/remove-background" rel=""
class="mud-nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-
icon-size-medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false"
viewBox="0 0 24 24" aria-hidden="true"><g><rect fill="none" height="24"
width="24"/></g><g><g><path d="M21,5c0-1.1-0.9-2-2-2H5.83L21,18.17V5z"/><path
d="M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-
1.41L2.81,2.81z M6,17l3-4l2.25,3l0.82-1.1l2.1,2.1 H6z"/></g></g></svg><div
class="mud-nav-link-text">Remove background</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/text2video" rel="" class="mud-
nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M17
10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-
3.5l4 4v-11l-4 4z"/></svg><div class="mud-nav-link-text">Text-to-video
[BETA]</div></a></div>

<hr class="mud-divider my-4" /><div class="mud-nav-item mud-ripple"><a


href="/info/faq" rel="" class="mud-nav-link"><svg class="mud-icon-root mud-icon-
default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-nav-link-icon-
default" focusable="false" viewBox="0 0 24 24" aria-hidden="true"><g><rect
fill="none" height="24" width="24"/></g><g><path d="M11.07,12.85c0.77-1.39,2.25-
2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96
C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-
1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-
2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-
1.1,0.9-2,2-2 S14,18.9,14,20z"/></g></svg><div class="mud-nav-link-text">FAQ /
Support</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="/info/models" rel=""
class="mud-nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-
icon-size-medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false"
viewBox="0 0 24 24" aria-hidden="true"><g><rect fill="none" height="24"
width="24"/><path d="M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-
3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-
0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-
6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-
9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-
3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"/></g></svg><div class="mud-nav-link-
text">Models</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="https://blog.dezgo.com/"
target="_blank" rel="noopener noreferrer" class="mud-nav-link"><svg class="mud-
icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-
nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><g><rect fill="none" height="24" width="24"/></g><g><path d="M22,3l-
1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-
1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16 c0,1.1,0.9,2,2,2l16,0c1.1,0,2-
0.9,2-2V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z
M20,11H4V8h16V11z"/></g></svg><div
class="mud-nav-link-text">Blog</div></a></div><div class="mud-nav-item mud-
ripple"><a href="https://dev.dezgo.com/" rel="" class="mud-nav-link"><svg
class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-
link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M9.4 16.6L4.8 12l4.6-
4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg><div
class="mud-nav-link-text"><span>API</span></div></a></div>
<div class="mud-nav-item mud-ripple"><a href="https://app.impact.com/campaign-
campaign-info-v2/Dezgocom-Affiliation.brand" target="_blank" rel="noopener
noreferrer" class="mud-nav-link"><svg class="mud-icon-root mud-icon-default mud-
svg-icon mud-icon-size-medium mud-nav-link-icon mud-nav-link-icon-default"
focusable="false" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none"
height="24" width="24"/><g><path
d="M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-
1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-
0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1
C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-
2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z
M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z
M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-
1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3
c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z"/></g></svg><div class="mud-
nav-link-text">Affiliate</div></a></div>

<div class="mud-nav-item mud-ripple"><a href="https://twitter.com/dezgo"


target="_blank" rel="noopener noreferrer" class="mud-nav-link"><svg class="mud-
icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-
nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-
2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29
0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75
2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0
1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-
1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19
0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"/></svg><div class="mud-nav-link-
text">Twitter</div></a></div>
<div class="mud-nav-item mud-ripple"><a href="https://discord.gg/RQrGpUhPhx"
target="_blank" rel="noopener noreferrer" class="mud-nav-link"><svg class="mud-
icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-
nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path
d="M19,6.75A9.2017,9.2017,0,0,0,14.625,5l-.2135.4274a8.4519,8.4519,0,0,1,4.151,2.19
76A12.87,12.87,0,0,0,12,5.875a12.87,12.87,0,0,0-
6.5625,1.75,8.6339,8.6339,0,0,1,4.151-
2.1976L9.375,5A9.1429,9.1429,0,0,0,5,6.75S2.76,9.9989,2.375,16.375A8.2659,8.2659,0,
0,0,8.0625,19l.7175-.9555A8.7654,8.7654,0,0,1,5,15.5a11.032,11.032,0,0,0,7,2.1875A1
1.032,11.032,0,0,0,19,15.5a8.7609,8.7609,0,0,1-
3.78,2.5445L15.9375,19a8.2659,8.2659,0,0,0,5.6875-
2.625C21.24,9.9989,19,6.75,19,6.75ZM9.1562,14.625a1.6511,1.6511,0,0,1-1.5312-
1.75,1.6511,1.6511,0,0,1,1.5312-
1.75,1.6511,1.6511,0,0,1,1.5313,1.75A1.6511,1.6511,0,0,1,9.1562,14.625Zm5.6876,0a1.
6511,1.6511,0,0,1-1.5313-1.75,1.6511,1.6511,0,0,1,1.5313-
1.75,1.6511,1.6511,0,0,1,1.5312,1.75A1.6511,1.6511,0,0,1,14.8438,14.625Z"/></
svg><div class="mud-nav-link-text">Discord</div></a></div>

<div class="mud-nav-item mud-ripple"><a href="https://status.dezgo.com/"


target="_blank" rel="noopener noreferrer" class="mud-nav-link"><svg class="mud-
icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-
nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2
12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1
15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg><div class="mud-nav-link-text">System
Status</div></a></div>

<div class="mud-nav-item mud-ripple"><a href="/contest/flux" rel="" class="mud-


nav-link"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-
medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0
24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M0
0h24v24H0z" fill="none"/><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-
7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg><div class="mud-nav-link-
text">Flux Contest</div></a></div><div class="mud-container mud-container-maxwidth-
lg" style="margin-top:16px;"><span class="mud-typography mud-typography-caption
mud-typography-align-center">
powered by Stable Diffusion AI<br><a href="/terms" class="mud-
typography mud-link mud-default-text mud-link-underline-always mud-typography-
caption">Terms</a><span> - </span><a href="/privacy" class="mud-typography mud-link
mud-default-text mud-link-underline-always mud-typography-caption">Privacy</a> -
<a href="/license" class="mud-typography mud-link mud-default-text mud-
link-underline-always mud-typography-caption">Open RAIL-M License</a>
<br>
<button id="pmLink">Privacy
Manager</button></span></div></div></div></aside>

<div class="mud-main-content"><div data-nosnippet><div role="alert"


class="mud-alert mud-alert-text-info mud-dense mud-square mud-elevation-0"><div
class="mud-alert-position justify-sm-start"><div class="mud-alert-icon mud-alert-
icon-left"><svg class="mud-icon-root mud-svg-icon mud-icon-size-medium"
focusable="false" viewBox="0 0 24 24" aria-hidden="true"><g><rect fill="none"
height="24" width="24" x="0"/></g><g><g><g><path
d="M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-
2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z
M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-
1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z"/></g></
g></g></svg></div><div class="mud-alert-message">
Dezgo now supports Flux LoRAs created with a wider range of training
software.<br>
This significantly reduces Flux LoRA loading issues reported by our
users and increases the variety of LoRAs that can be used with Dezgo.
</div></div><div class="mud-alert-close"><button aria-pressed="false"
type="button" class="mud-button-root mud-icon-button mud-ripple mud-ripple-icon
mud-icon-button-size-small" __internal_stopPropagation_onclick><span class="mud-
icon-button-label"><svg class="mud-icon-root mud-svg-icon mud-icon-size-small"
focusable="false" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z"
fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41
19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg></span></button></div></div></div>

<div class="mud-container mud-container-maxwidth-false my-5 pt-5 pl-0


pr-0"><div class="d-flex flex-row-reverse flex-grow-1 gap-4" style="margin-top: -
30px; margin-bottom: 12px;"><div Style="width: 200px;"><div class="mud-select"
id="select_719aaaba"><div class="mud-input-control mud-input-control-margin-dense
mud-input-control-full-width mud-select"><div class="mud-input-control-input-
container"><div class="mud-input mud-input-text mud-input-adorned-end mud-input-
margin-dense mud-input-underline mud-shrink mud-select-input"><input class="mud-
input-slot mud-input-root mud-input-root-text mud-input-root-adorned-end mud-input-
root-margin-dense mud-select-input" type="text" value="text2image_flux" readonly
inputmode="text" maxlength="524288" aria-invalid="false"></input><div class="mud-
input-slot mud-input-root mud-input-root-text mud-input-root-adorned-end mud-input-
root-margin-dense mud-select-input" style="display:none" tabindex="-1"></div><div
class="mud-input-adornment mud-input-adornment-end mud-select-input"><svg aria-
label="Icon" tabindex="-1" class="mud-icon-root mud-icon-default mud-svg-icon mud-
icon-size-medium" focusable="false" viewBox="0 0 24 24" aria-hidden="true"><path
d="M0 0h24v24H0z" fill="none"/><path d="M7 10l5 5 5-5z"/></svg></div></div>
<div id="popover-22bfb810-cfbd-4735-8059-99e67dff6976"
class="mud-popover-cascading-value"></div><label class="mud-input-label mud-input-
label-animated mud-input-label-text mud-input-label-margin-dense mud-input-label-
inputcontrol" for="mudinput-c9d8d5e7-1477-48b9-9ec8-9e549ee04129">Architecture</
label></div></div></div>

</div></div>

<div class="mud-container mud-container-maxwidth-lg"><h6 class="mud-typography mud-


typography-h6 mud-typography-align-center">Generate stunning images from a text
description</h6><h6 class="mud-typography mud-typography-subtitle1 mud-typography-
align-center mb-4">
powered by Flux AI
<span class="mud-typography mud-typography-caption">(<a style="cursor:
pointer;" class=" mud-link mud-gray-text mud-link-underline-always ">Apache
2</a>)</span></h6><div class="mud-grid mud-grid-spacing-xs-1 justify-start"><div
class="mud-grid-item mud-grid-item-xs-12 mud-grid-item-sm-12 mud-grid-item-md-
6"><div class="d-flex flex-column gap-6"><div class="mud-container mud-container-
maxwidth-lg" style="position: relative;"><p>Prompt</p><span class="mud-typography
mud-typography-caption" style="color:gray;">Describe how the final image should
look like</span><div class="mud-input-control mud-input-control-margin-dense mud-
input-input-control resizable-vertically"><div class="mud-input-control-input-
container"><div class="mud-input mud-input-outlined mud-input-margin-dense"
style="width: 100%;"><textarea class="mud-input-slot mud-input-root mud-input-root-
outlined mud-input-root-margin-dense" rows="3" type="text" inputmode="text"
maxlength="524288" aria-invalid="false"></textarea><div class="mud-input-outlined-
border"></div></div></div></div></div><div class="mud-container mud-container-
maxwidth-lg d-none" style="position: relative;"><p>Model</p><span class="mud-
typography mud-typography-caption" style="color:gray;">Select the model to
use</span><div class="mud-select" id="select_6ab2898d"><div class="mud-input-
control mud-input-control-margin-dense mud-select"><div class="mud-input-control-
input-container"><div class="mud-input mud-input-outlined mud-input-adorned-end
mud-input-margin-dense mud-shrink mud-select-input"><input class="mud-input-slot
mud-input-root mud-input-root-outlined mud-input-root-adorned-end mud-input-root-
margin-dense mud-select-input" type="hidden" value="flux_1_schnell" readonly
inputmode="text" maxlength="524288" aria-invalid="false"></input><div class="mud-
input-slot mud-input-root mud-input-root-outlined mud-input-root-adorned-end mud-
input-root-margin-dense mud-select-input" style="display:inline" tabindex="0"><img
src="https://static.dezgo.com/samples/models2/d/64/flux_1_schnell.jpg" class="mr-2"
width="64" height="64" style="vertical-align: middle;" />Flux Schnell
(general)</div><div class="mud-input-adornment mud-input-adornment-end mud-select-
input"><svg aria-label="Icon" tabindex="-1" class="mud-icon-root mud-icon-default
mud-svg-icon mud-icon-size-medium" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M7 10l5 5
5-5z"/></svg></div><div class="mud-input-outlined-border"></div></div>
<div id="popover-e13b5eac-fd46-47d4-ac77-0af7cb27009f"
class="mud-popover-cascading-value"></div></div></div></div>

</div><div class="mud-container mud-container-maxwidth-lg rounded pointer-events-


none" style="position: relative;"><div class="mud-overlay mud-overlay-absolute"
style="" __internal_stopPropagation_onclick><div class="mud-overlay-scrim mud-
overlay-dark"></div><div class="mud-overlay-content"><p class="d-flex align-
center"><svg class="mud-icon-root mud-svg-icon mud-success-text mud-icon-size-
medium mr-1" focusable="false" viewBox="0 0 24 24" aria-hidden="true"><g><rect
fill="none" height="24" width="24"/></g><g><path d="M11,21h-1l1-7H7.5c-0.88,0-0.33-
0.75-0.31-0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66
C12.97,17.55,11,21,11,21z"/></g></svg> Available in Power
Mode</p></div></div><p>Count</p><span class="mud-typography mud-typography-caption"
style="color:gray;">Number of images to generate</span><div class="mud-select"
id="select_514f50a4"><div class="mud-input-control mud-input-control-margin-dense
mud-select"><div class="mud-input-control-input-container"><div class="mud-input
mud-input-outlined mud-input-adorned-end mud-input-margin-dense mud-shrink mud-
select-input"><input class="mud-input-slot mud-input-root mud-input-root-outlined
mud-input-root-adorned-end mud-input-root-margin-dense mud-select-input"
type="text" value="1" readonly inputmode="text" maxlength="524288" aria-
invalid="false"></input><div class="mud-input-slot mud-input-root mud-input-root-
outlined mud-input-root-adorned-end mud-input-root-margin-dense mud-select-input"
style="display:none" tabindex="-1"></div><div class="mud-input-adornment mud-input-
adornment-end mud-select-input"><svg aria-label="Icon" tabindex="-1" class="mud-
icon-root mud-icon-default mud-svg-icon mud-icon-size-medium" focusable="false"
viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path
d="M7 10l5 5 5-5z"/></svg></div><div class="mud-input-outlined-border"></div></div>
<div id="popover-18618f9a-9d32-4334-94fc-f544c3a884b5"
class="mud-popover-cascading-value"></div></div></div></div>

</div><div class="mud-container mud-container-maxwidth-lg" style="position:


relative;"><p>Transparent background</p><span class="mud-typography mud-typography-
caption" style="color:gray;">Addon to make the background
transparent</span><div><label class="mud-switch" id="switch_bdc86366"><span
class="mud-switch-span mud-flip-x-rtl"><span tabindex="0" class="mud-button-root
mud-icon-button mud-switch-base mud-ripple mud-ripple-switch mud-default-text
hover:mud-default-hover"><span class="mud-switch-button"><input tabindex="-1" aria-
checked="false" aria-readonly="false" type="checkbox" class="mud-switch-input" />
<span class="mud-switch-thumb d-flex align-center justify-
center"></span></span></span>
<span class="mud-switch-track mud-default"></span></span><p class="mud-
typography mud-typography-body1">No</p></label></div></div><div class="mud-
container mud-container-maxwidth-lg" style="position:
relative;"><p>Resolution</p><span class="mud-typography mud-typography-caption"
style="color:gray;">Choose image resolution</span><div class="" b-3vsyzrbm1z><div
class="mud-slider mud-slider-small mud-slider-primary mb-4" style=""><div
class="mud-slider-container"><div class="mud-slider-inner-container"><div
class="mud-slider-tickmarks"><div class="d-flex flex-column relative"><span
class="mud-slider-track-tick"></span><p class="mud-typography mud-typography-body2
mud-slider-track-tick-label">Portrait</p></div><div class="d-flex flex-column
relative"><span class="mud-slider-track-tick"></span><p class="mud-typography mud-
typography-body2 mud-slider-track-tick-label"></p></div><div class="d-flex flex-
column relative"><span class="mud-slider-track-tick"></span><p class="mud-
typography mud-typography-body2 mud-slider-track-tick-label"></p></div><div
class="d-flex flex-column relative"><span class="mud-slider-track-tick"></span><p
class="mud-typography mud-typography-body2
mud-slider-track-tick-label">Square</p></div><div class="d-flex flex-column
relative"><span class="mud-slider-track-tick"></span><p class="mud-typography mud-
typography-body2 mud-slider-track-tick-label"></p></div><div class="d-flex flex-
column relative"><span class="mud-slider-track-tick"></span><p class="mud-
typography mud-typography-body2 mud-slider-track-tick-label"></p></div><div
class="d-flex flex-column relative"><span class="mud-slider-track-tick"></span><p
class="mud-typography mud-typography-body2 mud-slider-track-tick-
label">Landscape</p></div></div></div><input class="mud-slider-input" aria-
valuenow="3" aria-valuemin="0" aria-valuemax="6" role="slider" type="range" min="0"
max="6" step="1" value="3" /></div></div></div></div></div><div class="mud-
expansion-panels mt-4"><div class="mud-expand-panel mud-elevation-1 mud-expand-
panel-border"><div class="mud-expand-panel-header"><div class="mud-expand-panel-
text">More options</div><svg class="mud-icon-root mud-svg-icon mud-icon-size-medium
mud-expand-panel-icon" focusable="false" viewBox="0 0 24 24" aria-
hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M16.59 8.59L12 13.17
7.41 8.59 6 10l6 6 6-6z"/></svg></div>
<div class="mud-collapse-container" style=""><div class="mud-collapse-
wrapper"><div class="mud-collapse-wrapper-inner"><div class="mud-expand-panel-
content"><div class="d-flex flex-column gap-6"><div class="mud-container mud-
container-maxwidth-lg" style="position: relative;"><p>LoRA</p><span class="mud-
typography mud-typography-caption" style="color:gray;">Choose extension
models</span><div><button type="button" class="mud-button-root mud-button mud-
button-filled mud-button-filled-primary mud-button-filled-size-medium mud-ripple"
__internal_stopPropagation_onclick><span class="mud-button-label">Setup LoRA (0
enabled)</span></button></div></div><div class="mud-container mud-container-
maxwidth-lg rounded pointer-events-none" style="position: relative;"><div
class="mud-overlay mud-overlay-absolute" style=""
__internal_stopPropagation_onclick><div class="mud-overlay-scrim mud-overlay-
dark"></div><div class="mud-overlay-content"><p class="d-flex align-center"><svg
class="mud-icon-root mud-svg-icon mud-success-text mud-icon-size-medium mr-1"
focusable="false" viewBox="0 0 24 24" aria-hidden="true"><g><rect fill="none"
height="24" width="24"/></g><g><path d="M11,21h-1l1-7H7.5c-0.88,0-0.33-0.75-0.31-
0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66
C12.97,17.55,11,21,11,21z"/></g></svg> Available in Power
Mode</p></div></div><p>Steps</p><span class="mud-typography mud-typography-caption"
style="color:gray;">Number of sampling steps. More steps = more details but also
longer computation time.</span><div class="d-flex flex-row align-center gap-5"><div
class="mud-slider mud-slider-small mud-slider-primary"><div class="mud-slider-
container"><input class="mud-slider-input" aria-valuenow="4" aria-valuemin="2"
aria-valuemax="4" role="slider" type="range" min="2" max="4" step="1" value="4"
/></div></div></div></div><div class="mud-container mud-container-maxwidth-lg d-
none" style="position: relative;"><p>Guidance</p><span class="mud-typography mud-
typography-caption" style="color:gray;">Adjusts how much the AI tries to fit the
prompt (higher = stricter, lower = more freedom).</span><div class="d-flex flex-row
align-center gap-5"><p class="mud-typography mud-typography-body1">0.0</p><div
class="mud-slider mud-slider-small mud-slider-primary"><div class="mud-slider-
container"><input class="mud-slider-input" aria-valuenow="0" aria-valuemin="1"
aria-valuemax="0" role="slider" type="range" min="1" max="0" step="0.1"
value="0" /></div></div></div></div><div class="mud-container mud-container-
maxwidth-lg" style="position: relative;"><p>Seed</p><span class="mud-typography
mud-typography-caption" style="color:gray;">Unique image seed number. If not
provided, the image will be random.</span><div class="mud-input-control mud-input-
control-margin-dense mud-input-input-control"><div class="mud-input-control-input-
container"><div class="mud-input mud-input-outlined mud-input-margin-dense"
style="width: 100%;"><input class="mud-input-slot mud-input-root mud-input-root-
outlined mud-input-root-margin-dense" type="text" inputmode="text"
maxlength="524288" aria-invalid="false"></input><div class="mud-input-slot mud-
input-root mud-input-root-outlined mud-input-root-margin-dense"
style="display:none" tabindex="-1"></div><div
class="mud-input-outlined-border"></div></div></div></div></div><div class="mud-
container mud-container-maxwidth-lg" style="position: relative;"><p>Format</p><span
class="mud-typography mud-typography-caption" style="color:gray;">The encoding
format of the generated image.</span><div class="mud-select"
id="select_4fd38054"><div class="mud-input-control mud-input-control-margin-dense
mud-select"><div class="mud-input-control-input-container"><div class="mud-input
mud-input-outlined mud-input-adorned-end mud-input-margin-dense mud-shrink mud-
select-input"><input class="mud-input-slot mud-input-root mud-input-root-outlined
mud-input-root-adorned-end mud-input-root-margin-dense mud-select-input"
type="hidden" value="png" readonly inputmode="text" maxlength="524288" aria-
invalid="false"></input><div class="mud-input-slot mud-input-root mud-input-root-
outlined mud-input-root-adorned-end mud-input-root-margin-dense mud-select-input"
style="display:inline" tabindex="0">PNG</div><div class="mud-input-adornment mud-
input-adornment-end mud-select-input"><svg aria-label="Icon" tabindex="-1"
class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium"
focusable="false" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z"
fill="none"/><path d="M7 10l5 5 5-5z"/></svg></div><div class="mud-input-outlined-
border"></div></div>
<div id="popover-d85554e6-92fc-4808-867a-62eb2b338f27"
class="mud-popover-cascading-value"></div></div></div></div>

</div></div></div></div></div></div></div></div></div>
<div class="mud-grid-item mud-grid-item-xs-12 mud-grid-item-sm-12 mud-grid-
item-md-6"><div id="job-output"></div>

<div class="d-flex flex-column justify-center align-center


gap-0"></div><div style="display:block"></div></div></div></div></div>

<div class="mud-container mud-container-maxwidth-lg" style="margin-top:


250px;"></div></div></div>

<!--Blazor:{"prerenderId":"309eac7f70c548b1949943ffcce2751f"}-->

<div id="blazor-error-ui" style="color:black;" data-nosnippet>

An error has occurred. This application may need to be reloaded.

<a href="" class="reload" style="color:blue;">Reload</a>


<a class="dismiss" style="color:blue;">Dismiss</a>
</div>

<script defer src="_framework/blazor.webassembly.js" autostart="false"></script>


<script defer src="_content/MudBlazor/MudBlazor.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Blazor.start({
loadBootResource: function (type, name, uri, integrity) {
console.log(`Loading: '${type}', '${name}', '${uri}', '$
{integrity}'`);

uri += "?" + integrity;


return uri;
return fetch(uri, {
cache: 'default',
integrity: integrity,
headers: {
"X-Blazor-Load": "1"
}
});

return null;
}
});
});
</script>

</body>
</html>

You might also like