| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. |
| 3 |
global $wpchatbot_pro_professional_init,$wpchatbot_pro_master_init; |
| 4 |
if((isset($wpchatbot_pro_master_init) && $wpchatbot_pro_master_init->is_valid()) || (isset($wpchatbot_pro_professional_init) && $wpchatbot_pro_professional_init->is_valid()) || (function_exists('get_openaiaddon_valid_license') && get_openaiaddon_valid_license())){ |
| 5 |
?> |
| 6 |
<style> |
| 7 |
.image-grid { |
| 8 |
display: flex; |
| 9 |
flex-wrap: wrap; |
| 10 |
} |
| 11 |
|
| 12 |
.image-item { |
| 13 |
margin: 10px; |
| 14 |
width: 256; |
| 15 |
height: 256; |
| 16 |
background-size: cover; |
| 17 |
box-shadow: 0px 0px 10px #ccc; |
| 18 |
} |
| 19 |
|
| 20 |
.select-element { |
| 21 |
margin: 10px; |
| 22 |
} |
| 23 |
|
| 24 |
.button-element { |
| 25 |
background-color: #4169E1; |
| 26 |
/* this is the blue color */ |
| 27 |
color: white; |
| 28 |
padding: 12px 20px; |
| 29 |
border-radius: 10px; |
| 30 |
border: none; |
| 31 |
cursor: pointer; |
| 32 |
font-size: 14px; |
| 33 |
} |
| 34 |
|
| 35 |
.button-element:hover { |
| 36 |
background-color: #6495ED; |
| 37 |
/* this is a slightly lighter blue color on hover */ |
| 38 |
box-shadow: 0px 0px 10px #B0C4DE; |
| 39 |
/* this is a subtle shadow on hover */ |
| 40 |
transform: translateY(-2px); |
| 41 |
/* this is a subtle upward movement on hover */ |
| 42 |
} |
| 43 |
|
| 44 |
|
| 45 |
textarea { |
| 46 |
width: 100%; |
| 47 |
padding: 12px 20px; |
| 48 |
box-sizing: border-box; |
| 49 |
border: 2px solid #ccc; |
| 50 |
border-radius: 4px; |
| 51 |
background-color: #f8f8f8; |
| 52 |
resize: none; |
| 53 |
} |
| 54 |
.qcld_seo_grid_form{ |
| 55 |
grid-template-columns: repeat(3,1fr); |
| 56 |
grid-column-gap: 20px; |
| 57 |
grid-row-gap: 20px; |
| 58 |
display: grid; |
| 59 |
grid-template-rows: auto auto; |
| 60 |
margin-top: 20px; |
| 61 |
|
| 62 |
} |
| 63 |
.qcld_seo_grid_form #wpai_preview_title{ |
| 64 |
font-size: 20px; |
| 65 |
padding: 1px 12px; |
| 66 |
} |
| 67 |
.qcld_seo_grid_form_1{ |
| 68 |
grid-column: span 1/span 1; |
| 69 |
} |
| 70 |
.qcld_seo_grid_form_2{ |
| 71 |
grid-column: span 2/span 1; |
| 72 |
} |
| 73 |
.qcld_seo-collapse{} |
| 74 |
.qcld_seo-collapse:last-of-type{ |
| 75 |
border-bottom: 1px solid #ccc; |
| 76 |
} |
| 77 |
.qcld_seo-collapse-title span{ |
| 78 |
display: inline-block; |
| 79 |
margin-right: 5px; |
| 80 |
} |
| 81 |
.qcld_seo-collapse-title{ |
| 82 |
padding: 10px; |
| 83 |
background: #fff; |
| 84 |
border-top: 1px solid #ccc; |
| 85 |
border-left: 1px solid #ccc; |
| 86 |
border-right: 1px solid #ccc; |
| 87 |
font-size: 14px; |
| 88 |
display: flex; |
| 89 |
align-items: center; |
| 90 |
cursor: pointer; |
| 91 |
font-weight: bold; |
| 92 |
} |
| 93 |
.qcld_seo-collapse-active .qcld_seo-collapse-title{} |
| 94 |
.qcld_seo-collapse-content{ |
| 95 |
display: none; |
| 96 |
background: #f1f1f1; |
| 97 |
padding: 10px; |
| 98 |
border-top: 1px solid #ccc; |
| 99 |
border-left: 1px solid #ccc; |
| 100 |
border-right: 1px solid #ccc; |
| 101 |
} |
| 102 |
.qcld_seo-collapse-active .qcld_seo-collapse-content{ |
| 103 |
display: block; |
| 104 |
} |
| 105 |
.qcld_seo-collapse-content .qcld_seo-form-label{ |
| 106 |
display: inline-block; |
| 107 |
width: 50%; |
| 108 |
} |
| 109 |
.qcld_seo-collapse-content select,.qcld_seo-collapse-content input[type=text],.qcld_seo-collapse-content input[type=url]{ |
| 110 |
display: inline-block!important; |
| 111 |
width: 48%!important; |
| 112 |
} |
| 113 |
@media(max-width: 480px){ |
| 114 |
.qcld_seo-grid{ |
| 115 |
grid-template-columns: repeat(1,1fr); |
| 116 |
grid-column-gap: 10px; |
| 117 |
grid-row-gap: 10px; |
| 118 |
} |
| 119 |
.qcld_seo-grid-1{} |
| 120 |
.qcld_seo-grid-2{ |
| 121 |
grid-column: span 1/span 1; |
| 122 |
} |
| 123 |
.qcld_seo-grid-5{ |
| 124 |
grid-column: span 1/span 1; |
| 125 |
} |
| 126 |
.qcld_seo-grid-6{ |
| 127 |
grid-column: span 1/span 1; |
| 128 |
} |
| 129 |
} |
| 130 |
</style> |
| 131 |
|
| 132 |
<div class="wrap fs-section"> |
| 133 |
|
| 134 |
<div id="poststuff"> |
| 135 |
<div id="fs_account"> |
| 136 |
|
| 137 |
<div class="qcld_seo_grid_form" id="qcld_seo-post-form"> |
| 138 |
<div class="qcld_seo_grid_form_2"> |
| 139 |
<form class="qcld_seo-single-content-form" method="post"> |
| 140 |
|
| 141 |
|
| 142 |
<div class="mb-5"> |
| 143 |
<label for="prompt"><?php esc_html_e('Prompt', 'chatbot'); ?>:</label> |
| 144 |
<textarea name="prompt" id="prompt" rows="2" cols="50"></textarea> |
| 145 |
<button class="button-element qcld_botopenai_generate_image" name="generate"><?php esc_html_e( 'Generate', 'chatbot' ); ?></button> |
| 146 |
|
| 147 |
</div> |
| 148 |
<div class="mb-5"> |
| 149 |
<div id="qcld_seo-tab-generated-text"> |
| 150 |
</div> |
| 151 |
</div> |
| 152 |
</div> |
| 153 |
<div class="qcld_seo_grid_form_1"> |
| 154 |
<div class="qcld_seo-collapse qcld_seo-collapse-active"> |
| 155 |
<div class="qcld_seo-collapse-title"><span>-</span><?php esc_html_e('Settings', 'chatbot'); ?></div> |
| 156 |
<div class="qcld_seo-collapse-content"> |
| 157 |
<div class="mb-5"> |
| 158 |
<label for="artist" class="qcld_seo-form-label"><?php esc_html_e('Artist:', 'chatbot'); ?></label> |
| 159 |
<select class="qcld_seo-input" name="artist" id="artist"> |
| 160 |
<option value="Salvador Dalí" selected=""><?php esc_html_e('Salvador Dalí', 'chatbot'); ?></option> |
| 161 |
<option value="Leonardo da Vinci"><?php esc_html_e('Leonardo da Vinci', 'chatbot'); ?></option> |
| 162 |
<option value="Michelangelo"><?php esc_html_e('Michelangelo', 'chatbot'); ?></option> |
| 163 |
<option value="Rembrandt"><?php esc_html_e('Rembrandt', 'chatbot'); ?></option> |
| 164 |
<option value="Van Gogh"><?php esc_html_e('Van Gogh', 'chatbot'); ?></option> |
| 165 |
<option value="Monet"><?php esc_html_e('Monet', 'chatbot'); ?></option> |
| 166 |
<option value="Vermeer"><?php esc_html_e('Vermeer', 'chatbot'); ?></option> |
| 167 |
<option value="Johannes Vermeer"><?php esc_html_e('Johannes Vermeer', 'chatbot'); ?></option> |
| 168 |
<option value="Raphael"><?php esc_html_e('Raphael', 'chatbot'); ?></option> |
| 169 |
<option value="Titian"><?php esc_html_e('Titian', 'chatbot'); ?></option> |
| 170 |
<option value="Degas"><?php esc_html_e('Degas', 'chatbot'); ?></option> |
| 171 |
<option value="Edgar Degas"><?php esc_html_e('Edgar Degas', 'chatbot'); ?></option> |
| 172 |
<option value="El Greco"><?php esc_html_e('El Greco', 'chatbot'); ?></option> |
| 173 |
<option value="Cézanne"><?php esc_html_e('Cézanne', 'chatbot'); ?></option> |
| 174 |
<option value="Paul Cézanne"><?php esc_html_e('Paul Cézanne', 'chatbot'); ?></option> |
| 175 |
<option value="Caravaggio"><?php esc_html_e('Caravaggio', 'chatbot'); ?></option> |
| 176 |
<option value="Gustav Klimt"><?php esc_html_e('Gustav Klimt', 'chatbot'); ?></option> |
| 177 |
<option value="Henri Matisse"><?php esc_html_e('Henri Matisse', 'chatbot'); ?></option> |
| 178 |
<option value="Pablo Picasso"><?php esc_html_e('Pablo Picasso', 'chatbot'); ?></option> |
| 179 |
<option value="Diego Velázquez"><?php esc_html_e('Diego Velázquez', 'chatbot'); ?></option> |
| 180 |
<option value="Sandro Botticelli"><?php esc_html_e('Sandro Botticelli', 'chatbot'); ?></option> |
| 181 |
<option value="Jan van Eyck"><?php esc_html_e('Jan van Eyck', 'chatbot'); ?></option> |
| 182 |
<option value="Albrecht Dürer"><?php esc_html_e('Albrecht Dürer', 'chatbot'); ?></option> |
| 183 |
<option value="Canaletto"><?php esc_html_e('Canaletto', 'chatbot'); ?></option> |
| 184 |
<option value="Frida Kahlo"><?php esc_html_e('Frida Kahlo', 'chatbot'); ?></option> |
| 185 |
<option value="Eugene Delacroix"><?php esc_html_e('Eugene Delacroix', 'chatbot'); ?></option> |
| 186 |
<option value="Gustav Courbet"><?php esc_html_e('Gustav Courbet', 'chatbot'); ?></option> |
| 187 |
<option value="John Singer Sargent"><?php esc_html_e('John Singer Sargent', 'chatbot'); ?></option> |
| 188 |
<option value="Georges Seurat"><?php esc_html_e('Georges Seurat', 'chatbot'); ?></option> |
| 189 |
<option value="Alfred Sisley"><?php esc_html_e('Alfred Sisley', 'chatbot'); ?></option> |
| 190 |
<option value="Pierre-Auguste Renoir"><?php esc_html_e('Pierre-Auguste Renoir', 'chatbot'); ?></option> |
| 191 |
<option value="Tintoretto"><?php esc_html_e('Tintoretto', 'chatbot'); ?></option> |
| 192 |
<option value="Frederic Edwin Church"><?php esc_html_e('Frederic Edwin Church', 'chatbot'); ?></option> |
| 193 |
<option value="John Everett Millais"><?php esc_html_e('John Everett Millais', 'chatbot'); ?></option> |
| 194 |
<option value="JMW Turner"><?php esc_html_e('JMW Turner', 'chatbot'); ?></option> |
| 195 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 196 |
</select> |
| 197 |
</div> |
| 198 |
<div class="mb-5"> |
| 199 |
<label for="art_style" class="qcld_seo-form-label"><?php esc_html_e('Style:', 'chatbot'); ?></label> |
| 200 |
<select class="qcld_seo-input" name="art_style" id="art_style"> |
| 201 |
<option value="Surrealism" selected=""><?php esc_html_e('Surrealism', 'chatbot'); ?></option> |
| 202 |
<option value="Early Renaissance"><?php esc_html_e('Early Renaissance', 'chatbot'); ?></option> |
| 203 |
<option value="Abstract"><?php esc_html_e('Abstract', 'chatbot'); ?></option> |
| 204 |
<option value="Abstract Expressionism"><?php esc_html_e('Abstract Expressionism', 'chatbot'); ?></option> |
| 205 |
<option value="Action Painting"><?php esc_html_e('Action Painting', 'chatbot'); ?></option> |
| 206 |
<option value="Art Deco"><?php esc_html_e('Art Deco', 'chatbot'); ?></option> |
| 207 |
<option value="Art Nouveau"><?php esc_html_e('Art Nouveau', 'chatbot'); ?></option> |
| 208 |
<option value="Baroque"><?php esc_html_e('Baroque', 'chatbot'); ?></option> |
| 209 |
<option value="Cubism"><?php esc_html_e('Cubism', 'chatbot'); ?></option> |
| 210 |
<option value="Digital Art"><?php esc_html_e('Digital Art', 'chatbot'); ?></option> |
| 211 |
<option value="Expressionism"><?php esc_html_e('Expressionism', 'chatbot'); ?></option> |
| 212 |
<option value="Fauvism"><?php esc_html_e('Fauvism', 'chatbot'); ?></option> |
| 213 |
<option value="High Renaissance"><?php esc_html_e('High Renaissance', 'chatbot'); ?></option> |
| 214 |
<option value="Impressionism"><?php esc_html_e('Impressionism', 'chatbot'); ?></option> |
| 215 |
<option value="Mannerism"><?php esc_html_e('Mannerism', 'chatbot'); ?></option> |
| 216 |
<option value="Minimalism"><?php esc_html_e('Minimalism', 'chatbot'); ?></option> |
| 217 |
<option value="Naïve Art"><?php esc_html_e('Naïve Art', 'chatbot'); ?></option> |
| 218 |
<option value="Northern Renaissance"><?php esc_html_e('Northern Renaissance', 'chatbot'); ?></option> |
| 219 |
<option value="Pop Art"><?php esc_html_e('Pop Art', 'chatbot'); ?></option> |
| 220 |
<option value="Post-Impressionism"><?php esc_html_e('Post-Impressionism', 'chatbot'); ?></option> |
| 221 |
<option value="Realism"><?php esc_html_e('Realism', 'chatbot'); ?></option> |
| 222 |
<option value="Rococo"><?php esc_html_e('Rococo', 'chatbot'); ?></option> |
| 223 |
<option value="Romanticism"><?php esc_html_e('Romanticism', 'chatbot'); ?></option> |
| 224 |
<option value="Symbolism"><?php esc_html_e('Symbolism', 'chatbot'); ?></option> |
| 225 |
<option value="Ukiyo-e"><?php esc_html_e('Ukiyo-e', 'chatbot'); ?></option> |
| 226 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 227 |
</select> |
| 228 |
</div> |
| 229 |
<div class="mb-5"> |
| 230 |
<label for="photography_style" class="qcld_seo-form-label"><?php esc_html_e('Photography:', 'chatbot'); ?></label> |
| 231 |
<select class="qcld_seo-input" name="photography_style" id="photography_style"> |
| 232 |
<option value="Portrait" selected=""><?php esc_html_e('Portrait', 'chatbot'); ?></option> |
| 233 |
<option value="Landscape"><?php esc_html_e('Landscape', 'chatbot'); ?></option> |
| 234 |
<option value="Street"><?php esc_html_e('Street', 'chatbot'); ?></option> |
| 235 |
<option value="Macro"><?php esc_html_e('Macro', 'chatbot'); ?></option> |
| 236 |
<option value="Abstract"><?php esc_html_e('Abstract', 'chatbot'); ?></option> |
| 237 |
<option value="Fine art"><?php esc_html_e('Fine art', 'chatbot'); ?></option> |
| 238 |
<option value="Black and white"><?php esc_html_e('Black and white', 'chatbot'); ?></option> |
| 239 |
<option value="Night"><?php esc_html_e('Night', 'chatbot'); ?></option> |
| 240 |
<option value="Sports"><?php esc_html_e('Sports', 'chatbot'); ?></option> |
| 241 |
<option value="Fashion"><?php esc_html_e('Fashion', 'chatbot'); ?></option> |
| 242 |
<option value="Wildlife"><?php esc_html_e('Wildlife', 'chatbot'); ?></option> |
| 243 |
<option value="Nature"><?php esc_html_e('Nature', 'chatbot'); ?></option> |
| 244 |
<option value="Travel"><?php esc_html_e('Travel', 'chatbot'); ?></option> |
| 245 |
<option value="Documentary"><?php esc_html_e('Documentary', 'chatbot'); ?></option> |
| 246 |
<option value="Food"><?php esc_html_e('Food', 'chatbot'); ?></option> |
| 247 |
<option value="Architecture"><?php esc_html_e('Architecture', 'chatbot'); ?></option> |
| 248 |
<option value="Industrial"><?php esc_html_e('Industrial', 'chatbot'); ?></option> |
| 249 |
<option value="Conceptual"><?php esc_html_e('Conceptual', 'chatbot'); ?></option> |
| 250 |
<option value="Candid"><?php esc_html_e('Candid', 'chatbot'); ?></option> |
| 251 |
<option value="Underwater"><?php esc_html_e('Underwater', 'chatbot'); ?></option> |
| 252 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 253 |
</select> |
| 254 |
</div> |
| 255 |
<div class="mb-5"> |
| 256 |
<label for="lighting" class="qcld_seo-form-label"><?php esc_html_e('Lighting:', 'chatbot'); ?></label> |
| 257 |
<select class="qcld_seo-input" name="lighting" id="lighting"> |
| 258 |
<option value="Ambient" selected><?php esc_html_e('Ambient', 'chatbot'); ?></option> |
| 259 |
<option value="Artificial light"><?php esc_html_e('Artificial light', 'chatbot'); ?></option> |
| 260 |
<option value="Backlight"><?php esc_html_e('Backlight', 'chatbot'); ?></option> |
| 261 |
<option value="Black light"><?php esc_html_e('Black light', 'chatbot'); ?></option> |
| 262 |
<option value="Blue hour"><?php esc_html_e('Blue hour', 'chatbot'); ?></option> |
| 263 |
<option value="Candle light"><?php esc_html_e('Candle light', 'chatbot'); ?></option> |
| 264 |
<option value="Chiaroscuro"><?php esc_html_e('Chiaroscuro', 'chatbot'); ?></option> |
| 265 |
<option value="Cloudy"><?php esc_html_e('Cloudy', 'chatbot'); ?></option> |
| 266 |
<option value="Color gels"><?php esc_html_e('Color gels', 'chatbot'); ?></option> |
| 267 |
<option value="Continuous light"><?php esc_html_e('Continuous light', 'chatbot'); ?></option> |
| 268 |
<option value="Contre-jour"><?php esc_html_e('Contre-jour', 'chatbot'); ?></option> |
| 269 |
<option value="Direct light"><?php esc_html_e('Direct light', 'chatbot'); ?></option> |
| 270 |
<option value="Direct sunlight"><?php esc_html_e('Direct sunlight', 'chatbot'); ?></option> |
| 271 |
<option value="Diffused light"><?php esc_html_e('Diffused light', 'chatbot'); ?></option> |
| 272 |
<option value="Firelight"><?php esc_html_e('Firelight', 'chatbot'); ?></option> |
| 273 |
<option value="Flash"><?php esc_html_e('Flash', 'chatbot'); ?></option> |
| 274 |
<option value="Flat light"><?php esc_html_e('Flat light', 'chatbot'); ?></option> |
| 275 |
<option value="Fluorescent"><?php esc_html_e('Fluorescent', 'chatbot'); ?></option> |
| 276 |
<option value="Fog"><?php esc_html_e('Fog', 'chatbot'); ?></option> |
| 277 |
<option value="Front light"><?php esc_html_e('Front light', 'chatbot'); ?></option> |
| 278 |
<option value="Golden hour"><?php esc_html_e('Golden hour', 'chatbot'); ?></option> |
| 279 |
<option value="Hard light"><?php esc_html_e('Hard light', 'chatbot'); ?></option> |
| 280 |
<option value="Soft light"><?php esc_html_e('Soft light', 'chatbot'); ?></option> |
| 281 |
<option value="Rim light"><?php esc_html_e('Rim light', 'chatbot'); ?></option> |
| 282 |
<option value="Backlight"><?php esc_html_e('Backlight', 'chatbot'); ?></option> |
| 283 |
<option value="Silhouette"><?php esc_html_e('Silhouette', 'chatbot'); ?></option> |
| 284 |
<option value="Natural light"><?php esc_html_e('Natural light', 'chatbot'); ?></option> |
| 285 |
<option value="Studio light"><?php esc_html_e('Studio light', 'chatbot'); ?></option> |
| 286 |
<option value="Flash"><?php esc_html_e('Flash', 'chatbot'); ?></option> |
| 287 |
<option value="Continuous light"><?php esc_html_e('Continuous light', 'chatbot'); ?></option> |
| 288 |
<option value="High key"><?php esc_html_e('High key', 'chatbot'); ?></option> |
| 289 |
<option value="Low key"><?php esc_html_e('Low key', 'chatbot'); ?></option> |
| 290 |
<option value="Golden hour"><?php esc_html_e('Golden hour', 'chatbot'); ?></option> |
| 291 |
<option value="Blue hour"><?php esc_html_e('Blue hour', 'chatbot'); ?></option> |
| 292 |
<option value="Diffused light"><?php esc_html_e('Diffused light', 'chatbot'); ?></option> |
| 293 |
<option value="Reflected light"><?php esc_html_e('Reflected light', 'chatbot'); ?></option> |
| 294 |
<option value="Shaded light"><?php esc_html_e('Shaded light', 'chatbot'); ?></option> |
| 295 |
<option value="Side light"><?php esc_html_e('Side light', 'chatbot'); ?></option> |
| 296 |
<option value="Direct light"><?php esc_html_e('Direct light', 'chatbot'); ?></option> |
| 297 |
<option value="Artificial light"><?php esc_html_e('Artificial light', 'chatbot'); ?></option> |
| 298 |
<option value="Moonlight"><?php esc_html_e('Moonlight', 'chatbot'); ?></option> |
| 299 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 300 |
</select> |
| 301 |
|
| 302 |
</div> |
| 303 |
<div class="mb-5"> |
| 304 |
<label for="subject" class="qcld_seo-form-label"><?php esc_html_e('Subject:', 'chatbot'); ?></label> |
| 305 |
<select class="qcld_seo-input" name="subject" id="subject"> |
| 306 |
<option value="Landscapes" selected><?php esc_html_e('Landscapes', 'chatbot'); ?></option> |
| 307 |
<option value="People"><?php esc_html_e('People', 'chatbot'); ?></option> |
| 308 |
<option value="Animals"><?php esc_html_e('Animals', 'chatbot'); ?></option> |
| 309 |
<option value="Food"><?php esc_html_e('Food', 'chatbot'); ?></option> |
| 310 |
<option value="Cars"><?php esc_html_e('Cars', 'chatbot'); ?></option> |
| 311 |
<option value="Architecture"><?php esc_html_e('Architecture', 'chatbot'); ?></option> |
| 312 |
<option value="Flowers"><?php esc_html_e('Flowers', 'chatbot'); ?></option> |
| 313 |
<option value="Still life"><?php esc_html_e('Still life', 'chatbot'); ?></option> |
| 314 |
<option value="Portrait"><?php esc_html_e('Portrait', 'chatbot'); ?></option> |
| 315 |
<option value="Cityscapes"><?php esc_html_e('Cityscapes', 'chatbot'); ?></option> |
| 316 |
<option value="Seascapes"><?php esc_html_e('Seascapes', 'chatbot'); ?></option> |
| 317 |
<option value="Nature"><?php esc_html_e('Nature', 'chatbot'); ?></option> |
| 318 |
<option value="Action"><?php esc_html_e('Action', 'chatbot'); ?></option> |
| 319 |
<option value="Events"><?php esc_html_e('Events', 'chatbot'); ?></option> |
| 320 |
<option value="Street"><?php esc_html_e('Street', 'chatbot'); ?></option> |
| 321 |
<option value="Abstract"><?php esc_html_e('Abstract', 'chatbot'); ?></option> |
| 322 |
<option value="Candid"><?php esc_html_e('Candid', 'chatbot'); ?></option> |
| 323 |
<option value="Underwater"><?php esc_html_e('Underwater', 'chatbot'); ?></option> |
| 324 |
<option value="Night"><?php esc_html_e('Night', 'chatbot'); ?></option> |
| 325 |
<option value="Wildlife"><?php esc_html_e('Wildlife', 'chatbot'); ?></option> |
| 326 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 327 |
</select> |
| 328 |
</div> |
| 329 |
<div class="mb-5"> |
| 330 |
<label for="camera_settings" class="qcld_seo-form-label"><?php esc_html_e('Camera:', 'chatbot'); ?></label> |
| 331 |
<select class="qcld_seo-input" name="camera_settings" id="camera_settings"> |
| 332 |
<option value="Aperture" selected><?php esc_html_e('Aperture', 'chatbot'); ?></option> |
| 333 |
<option value="Shutter speed"><?php esc_html_e('Shutter speed', 'chatbot'); ?></option> |
| 334 |
<option value="ISO"><?php esc_html_e('ISO', 'chatbot'); ?></option> |
| 335 |
<option value="White balance"><?php esc_html_e('White balance', 'chatbot'); ?></option> |
| 336 |
<option value="Exposure compensation"><?php esc_html_e('Exposure compensation', 'chatbot'); ?></option> |
| 337 |
<option value="Focus mode"><?php esc_html_e('Focus mode', 'chatbot'); ?></option> |
| 338 |
<option value="Metering mode"><?php esc_html_e('Metering mode', 'chatbot'); ?></option> |
| 339 |
<option value="Drive mode"><?php esc_html_e('Drive mode', 'chatbot'); ?></option> |
| 340 |
<option value="Image stabilization"><?php esc_html_e('Image stabilization', 'chatbot'); ?></option> |
| 341 |
<option value="Auto-Focus point"><?php esc_html_e('Auto-Focus point', 'chatbot'); ?></option> |
| 342 |
<option value="Flash mode"><?php esc_html_e('Flash mode', 'chatbot'); ?></option> |
| 343 |
<option value="Flash compensation"><?php esc_html_e('Flash compensation', 'chatbot'); ?></option> |
| 344 |
<option value="Picture style/picture control"><?php esc_html_e('Picture style/picture control', 'chatbot'); ?></option> |
| 345 |
<option value="Long exposure"><?php esc_html_e('Long exposure', 'chatbot'); ?></option> |
| 346 |
<option value="High-speed sync"><?php esc_html_e('High-speed sync', 'chatbot'); ?></option> |
| 347 |
<option value="Mirror lock-up"><?php esc_html_e('Mirror lock-up', 'chatbot'); ?></option> |
| 348 |
<option value="Bracketing"><?php esc_html_e('Bracketing', 'chatbot'); ?></option> |
| 349 |
<option value="Noise reduction"><?php esc_html_e('Noise reduction', 'chatbot'); ?></option> |
| 350 |
<option value="Image format"><?php esc_html_e('Image format', 'chatbot'); ?></option> |
| 351 |
<option value="Time-lapse"><?php esc_html_e('Time-lapse', 'chatbot'); ?></option> |
| 352 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 353 |
</select> |
| 354 |
</div> |
| 355 |
<div class="mb-5"> |
| 356 |
<label for="composition" class="qcld_seo-form-label"><?php esc_html_e('Composition:', 'chatbot'); ?></label> |
| 357 |
<select class="qcld_seo-input" name="composition" id="composition"> |
| 358 |
<option value="Rule of thirds" selected><?php esc_html_e('Rule of thirds', 'chatbot'); ?></option> |
| 359 |
<option value="Symmetry"><?php esc_html_e('Symmetry', 'chatbot'); ?></option> |
| 360 |
<option value="Leading lines"><?php esc_html_e('Leading lines', 'chatbot'); ?></option> |
| 361 |
<option value="Negative space"><?php esc_html_e('Negative space', 'chatbot'); ?></option> |
| 362 |
<option value="Frame within a frame"><?php esc_html_e('Frame within a frame', 'chatbot'); ?></option> |
| 363 |
<option value="Diagonal lines"><?php esc_html_e('Diagonal lines', 'chatbot'); ?></option> |
| 364 |
<option value="Triangles"><?php esc_html_e('Triangles', 'chatbot'); ?></option> |
| 365 |
<option value="S-curves"><?php esc_html_e('S-curves', 'chatbot'); ?></option> |
| 366 |
<option value="Golden ratio"><?php esc_html_e('Golden ratio', 'chatbot'); ?></option> |
| 367 |
<option value="Radial balance"><?php esc_html_e('Radial balance', 'chatbot'); ?></option> |
| 368 |
<option value="Contrast"><?php esc_html_e('Contrast', 'chatbot'); ?></option> |
| 369 |
<option value="Repetition"><?php esc_html_e('Repetition', 'chatbot'); ?></option> |
| 370 |
<option value="Simplicity"><?php esc_html_e('Simplicity', 'chatbot'); ?></option> |
| 371 |
<option value="Viewpoint"><?php esc_html_e('Viewpoint', 'chatbot'); ?></option> |
| 372 |
<option value="Foreground, middle ground, background"><?php esc_html_e('Foreground, middle ground, background', 'chatbot'); ?></option> |
| 373 |
<option value="Patterns"><?php esc_html_e('Patterns', 'chatbot'); ?></option> |
| 374 |
<option value="Texture"><?php esc_html_e('Texture', 'chatbot'); ?></option> |
| 375 |
<option value="Balance"><?php esc_html_e('Balance', 'chatbot'); ?></option> |
| 376 |
<option value="Color theory"><?php esc_html_e('Color theory', 'chatbot'); ?></option> |
| 377 |
<option value="Proportion"><?php esc_html_e('Proportion', 'chatbot'); ?></option> |
| 378 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 379 |
</select> |
| 380 |
</div> |
| 381 |
<div class="mb-5"> |
| 382 |
<label for="resolution" class="qcld_seo-form-label"><?php esc_html_e('Resolution:', 'chatbot'); ?></label> |
| 383 |
<select class="qcld_seo-input" name="resolution" id="resolution"> |
| 384 |
<option value="4K (3840x2160)" selected><?php esc_html_e('4K (3840x2160)', 'chatbot'); ?></option> |
| 385 |
<option value="1080p (1920x1080)"><?php esc_html_e('1080p (1920x1080)', 'chatbot'); ?></option> |
| 386 |
<option value="720p (1280x720)"><?php esc_html_e('720p (1280x720)', 'chatbot'); ?></option> |
| 387 |
<option value="480p (854x480)"><?php esc_html_e('480p (854x480)', 'chatbot'); ?></option> |
| 388 |
<option value="2K (2560x1440)"><?php esc_html_e('2K (2560x1440)', 'chatbot'); ?></option> |
| 389 |
<option value="1080i (1920x1080)"><?php esc_html_e('1080i (1920x1080)', 'chatbot'); ?></option> |
| 390 |
<option value="720i (1280x720)"><?php esc_html_e('720i (1280x720)', 'chatbot'); ?></option> |
| 391 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 392 |
</select> |
| 393 |
</div> |
| 394 |
<div class="mb-5"> |
| 395 |
<label for="color" class="qcld_seo-form-label"><?php esc_html_e('Color:', 'chatbot'); ?></label> |
| 396 |
<select class="qcld_seo-input" name="color" id="color"> |
| 397 |
<option value="RGB" selected><?php esc_html_e('RGB', 'chatbot'); ?></option> |
| 398 |
<option value="CMYK"><?php esc_html_e('CMYK', 'chatbot'); ?></option> |
| 399 |
<option value="Grayscale"><?php esc_html_e('Grayscale', 'chatbot'); ?></option> |
| 400 |
<option value="HEX"><?php esc_html_e('HEX', 'chatbot'); ?></option> |
| 401 |
<option value="Pantone"><?php esc_html_e('Pantone', 'chatbot'); ?></option> |
| 402 |
<option value="CMY"><?php esc_html_e('CMY', 'chatbot'); ?></option> |
| 403 |
<option value="HSL"><?php esc_html_e('HSL', 'chatbot'); ?></option> |
| 404 |
<option value="HSV"><?php esc_html_e('HSV', 'chatbot'); ?></option> |
| 405 |
<option value="LAB"><?php esc_html_e('LAB', 'chatbot'); ?></option> |
| 406 |
<option value="LCH"><?php esc_html_e('LCH', 'chatbot'); ?></option> |
| 407 |
<option value="LUV"><?php esc_html_e('LUV', 'chatbot'); ?></option> |
| 408 |
<option value="XYZ"><?php esc_html_e('XYZ', 'chatbot'); ?></option> |
| 409 |
<option value="YUV"><?php esc_html_e('YUV', 'chatbot'); ?></option> |
| 410 |
<option value="YIQ"><?php esc_html_e('YIQ', 'chatbot'); ?></option> |
| 411 |
<option value="YCbCr"><?php esc_html_e('YCbCr', 'chatbot'); ?></option> |
| 412 |
<option value="YPbPr"><?php esc_html_e('YPbPr', 'chatbot'); ?></option> |
| 413 |
<option value="YDbDr"><?php esc_html_e('YDbDr', 'chatbot'); ?></option> |
| 414 |
<option value="YCoCg"><?php esc_html_e('YCoCg', 'chatbot'); ?></option> |
| 415 |
<option value="YCgCo"><?php esc_html_e('YCgCo', 'chatbot'); ?></option> |
| 416 |
<option value="YCC"><?php esc_html_e('YCC', 'chatbot'); ?></option> |
| 417 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 418 |
</select> |
| 419 |
</div> |
| 420 |
<div class="mb-5"> |
| 421 |
<label for="special_effects" class="qcld_seo-form-label"><?php esc_html_e('Special Effects:', 'chatbot'); ?></label> |
| 422 |
<select class="qcld_seo-input" name="special_effects" id="special_effects"> |
| 423 |
<option value="Cinemagraph" selected><?php esc_html_e('Cinemagraph', 'chatbot'); ?></option> |
| 424 |
<option value="Bokeh"><?php esc_html_e('Bokeh', 'chatbot'); ?></option> |
| 425 |
<option value="Panorama"><?php esc_html_e('Panorama', 'chatbot'); ?></option> |
| 426 |
<option value="HDR"><?php esc_html_e('HDR', 'chatbot'); ?></option> |
| 427 |
<option value="Long exposure"><?php esc_html_e('Long exposure', 'chatbot'); ?></option> |
| 428 |
<option value="Timelapse"><?php esc_html_e('Timelapse', 'chatbot'); ?></option> |
| 429 |
<option value="Slow motion"><?php esc_html_e('Slow motion', 'chatbot'); ?></option> |
| 430 |
<option value="Stop-motion"><?php esc_html_e('Stop-motion', 'chatbot'); ?></option> |
| 431 |
<option value="Tilt-shift"><?php esc_html_e('Tilt-shift', 'chatbot'); ?></option> |
| 432 |
<option value="Zoom blur"><?php esc_html_e('Zoom blur', 'chatbot'); ?></option> |
| 433 |
<option value="Motion blur"><?php esc_html_e('Motion blur', 'chatbot'); ?></option> |
| 434 |
<option value="Lens flare"><?php esc_html_e('Lens flare', 'chatbot'); ?></option> |
| 435 |
<option value="Sunburst"><?php esc_html_e('Sunburst', 'chatbot'); ?></option> |
| 436 |
<option value="Starburst"><?php esc_html_e('Starburst', 'chatbot'); ?></option> |
| 437 |
<option value="Double exposure"><?php esc_html_e('Double exposure', 'chatbot'); ?></option> |
| 438 |
<option value="Cross processing"><?php esc_html_e('Cross processing', 'chatbot'); ?></option> |
| 439 |
<option value="Fish-eye"><?php esc_html_e('Fish-eye', 'chatbot'); ?></option> |
| 440 |
<option value="Vignette"><?php esc_html_e('Vignette', 'chatbot'); ?></option> |
| 441 |
<option value="Infrared"><?php esc_html_e('Infrared', 'chatbot'); ?></option> |
| 442 |
<option value="3D"><?php esc_html_e('3D', 'chatbot'); ?></option> |
| 443 |
<option value="None"><?php esc_html_e('None', 'chatbot'); ?></option> |
| 444 |
</select> |
| 445 |
</div> |
| 446 |
<div class="mb-5"> |
| 447 |
|
| 448 |
<label for="img_size" class="qcld_seo-form-label"><?php esc_html_e('Size:', 'chatbot'); ?></label> |
| 449 |
<select class="qcld_seo-input" name="img_size" id="img_size"> |
| 450 |
<option value="256x256"><?php esc_html_e('256x256', 'chatbot'); ?></option> |
| 451 |
<option value="512x512" selected><?php esc_html_e('512x512', 'chatbot'); ?></option> |
| 452 |
<option value="1024x1024"><?php esc_html_e('1024x1024', 'chatbot'); ?></option> |
| 453 |
</select> |
| 454 |
|
| 455 |
</div> |
| 456 |
<div class="mb-5"> |
| 457 |
|
| 458 |
<label for="num_images" class="qcld_seo-form-label"><?php esc_html_e('# of:', 'chatbot'); ?></label> |
| 459 |
<select name="num_images" id="num_images" class="qcld_seo-input"> |
| 460 |
<option value="1"><?php esc_html_e('1', 'chatbot'); ?></option> |
| 461 |
<option value="2"><?php esc_html_e('2', 'chatbot'); ?></option> |
| 462 |
<option value="3"><?php esc_html_e('3', 'chatbot'); ?></option> |
| 463 |
<option value="4" selected><?php esc_html_e('4', 'chatbot'); ?></option> |
| 464 |
<option value="5"><?php esc_html_e('5', 'chatbot'); ?></option> |
| 465 |
<option value="6"><?php esc_html_e('6', 'chatbot'); ?></option> |
| 466 |
<option value="7"><?php esc_html_e('7', 'chatbot'); ?></option> |
| 467 |
<option value="8"><?php esc_html_e('8', 'chatbot'); ?></option> |
| 468 |
</select> |
| 469 |
|
| 470 |
</div> |
| 471 |
</div> |
| 472 |
</div> |
| 473 |
|
| 474 |
</div> |
| 475 |
</div> |
| 476 |
<script> |
| 477 |
jQuery(document).ready(function ($) { |
| 478 |
$('.qcld_seo-collapse-title').click(function () { |
| 479 |
if (!$(this).hasClass('qcld_seo-collapse-active')) { |
| 480 |
$('.qcld_seo-collapse').removeClass('qcld_seo-collapse-active'); |
| 481 |
$('.qcld_seo-collapse-title span').html('+'); |
| 482 |
$(this).find('span').html('-'); |
| 483 |
$(this).parent().addClass('qcld_seo-collapse-active'); |
| 484 |
} |
| 485 |
}) |
| 486 |
}) |
| 487 |
</script> |
| 488 |
</form> |
| 489 |
</div> |
| 490 |
</div> |
| 491 |
</div> |
| 492 |
|
| 493 |
<?php |
| 494 |
} else { ?> |
| 495 |
<div class="row my-4"> |
| 496 |
<div class="col-md-12"> |
| 497 |
<?php esc_html_e('Fine tuning and training is available with the ','chatbot');?> |
| 498 |
<a href="https://www.wpbot.pro/pricing/"><?php esc_html_e('WPBot Pro Professional','chatbot'); ?></a> |
| 499 |
<?php esc_html_e(' and ','chatbot'); ?> |
| 500 |
<a href="https://www.wpbot.pro/pricing/"><?php esc_html_e('Master','chatbot'); ?></a> |
| 501 |
<?php esc_html_e(' Licenses','chatbot'); ?> |
| 502 |
</div> |
| 503 |
</div> |
| 504 |
<?php } ?> |