NAV
ImageEditor.ai
shell python php javascript

परिचय

ImageEditor.ai प्लॅटफॉर्म API मध्ये आपले स्वागत आहे!

प्रत्येक वैशिष्ट्य आमच्या वापरकर्त्यांना ImageEditor.ai च्या सिस्टमवर AI सह प्रतिमा अधिक सहजपणे तयार किंवा संपादित करण्यात मदत करण्यासाठी डिझाइन केलेले आहे.

तुमची API की मिळवण्यासाठी कृपया खाते पृष्ठावर जा.

डीफॉल्ट बेस URL

ImageEditor.ai API साठी डीफॉल्ट मूळ URL आहे: <b>https://api.imageeditor.ai/v1/</b>

टीप: सुरक्षेच्या कारणास्तव, सर्व ImageEditor.ai API फक्त HTTPS वर दिले जातात.

अधिकृतता

ImageEditor.ai API वापरण्यासाठी, तुम्हाला तुमच्या खात्याशी लिंक केलेली API की आवश्यक असेल.

अधिकृतता मूल्य हेडर विनंतीमध्ये पाठवले जावे.

Authorization: <api_key>

प्रतिमा तयार करा

 import requests
import time
import shutil
import json

headers = {"Authorization": "api_key"}
params = {
    "terms": "शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला",
    "is_sfw": True,
    "negative_terms": "डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला",
    "dimension": "landscape",
    "fix_faces": True,
    "make_tile": False,
    "upscale": False,
    "threesixty": False,
}
base_api_url = "https://api.imageeditor.ai"
api_url = f"{base_api_url}/v1"


def download_file(url, local_filename):
    url = f"{base_api_url}/{url}"
    with requests.get(url, stream=True) as r:
        with open(local_filename, "wb") as f:
            shutil.copyfileobj(r.raw, f)
    return local_filename


def convert_files(api_url, params, headers):
    r = requests.post(
        url=f"{api_url}/create-image/",
        json=params,
        headers=headers
    )
    return r.json()


def get_results(params):
    if params.get("error"):
        print(params)
        return

    r = requests.post(
        url=f"{api_url}/results/",
        data=params
    )
    data = r.json()
    finished = data.get("finished")

    while not finished:
        if int(data.get("queue_count")) > 0:
            print("queue: %s" % data.get("queue_count"))

        time.sleep(5)
        results = get_results(params)
        results = json.dumps(results)

        if results:
            break

    if finished:
        for f in data.get("files"):
            print(f.get("url"))
            download_file("%s" % f.get("url"), "%s" % f.get("filename"))
        return {"finished": "files downloaded"}
    return r.json()


get_results(convert_files(api_url, params, headers))
Create image

curl -X POST \
  https://api.imageeditor.ai/v1/create-image/ \
  -H 'Authorization: api_key' \
  -H 'Content-Type: application/json' \
  -d '{
    "terms": "शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला",
    "is_sfw": true,
    "negative_terms": "डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला",
    "dimension": "landscape",
    "fix_faces": true,
    "make_tile": false,
    "upscale": false,
    "threesixty": false
}'


Get created image URL

curl -X POST \
  https://api.imageeditor.ai/v1/results/ \
  -F 'uuid=response_uuid'
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ERROR | E_PARSE);

$headers = array("Authorization: api_key");
$file_list = ['/test_files/test.jpeg'];
$api_url = "https://api.imageeditor.ai/v1/edit-image/";
$results_url = "https://api.imageeditor.ai/v1/results/";

function download_file($url, $filename){
    $curl = curl_init();
    $url = "https://api.imageeditor.ai" . $url;
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_SSLVERSION, 3);
    $data = curl_exec($curl);
    $error = curl_error($curl);
    curl_close ($curl);
    # Make sure destionation path exists
    $destination_path = "/path/to/result/files/";
    $destination_file = fopen($destination_path . $filename, "w+");
    fwrite($destination_file, $data);
    fclose($destination_file);
}

function convert_files($file_list, $headers, $api_url) {
    $post_data['terms'] = 'शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला';
    $post_data['is_sfw'] = true;
    $post_data['negative_terms'] = 'डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला';
    $post_data['dimension'] = 'landscape';
    $post_data['fix_faces'] = true;
    $post_data['make_tile'] = false;
    $post_data['upscale'] = false;
    $post_data['threesixty'] = false;

    foreach ($file_list as $index => $file) {
        $post_data['file[' . $index . ']'] = curl_file_create(
            realpath($file),
            mime_content_type($file),
            basename($file)
        );
    }

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $api_url);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $content = curl_exec($curl);
    curl_close($curl);

    return json_decode($content);
}

function get_results($params, $results_url, $headers) {
    if ($params->error) {
        print_r($params->error);
        return;
    }

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $results_url);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, json_decode(json_encode($params), true));
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $content = json_decode(curl_exec($curl));
    curl_close($curl);

    if ($content->finished == false) {
        if (intval($content->queue_count) > 0) {
            print_r("queue: $content->queue_count");
        }

        sleep(5);
        $results = get_results($params, $results_url, $headers);
        return;
    }

    foreach ($content->files as $f) {
        download_file($f->url, $f->filename);
    }
}

$resp = convert_files($file_list, $headers, $api_url);
get_results($resp, $results_url, $headers);
?>
const request = require('request');
const fs = require('fs');

let file_list = ['/test_files/sala.png']
const api_url = 'https://api.imageeditor.ai/v1/create-image/'
const results_url = 'https://api.imageeditor.ai/v1/results/'

function convertFiles(file_list) {
    let data = {
        "terms": "शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला",
        "is_sfw": true,
        "negative_terms": "डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला",
        "dimension": "landscape",
        "fix_faces": true,
        "make_tile": false,
        "upscale": false,
        "threesixty": false,
    };

    for (var i = 0; i < file_list.length; i++) {
        formData['files'] = fs.createReadStream(file_list[i]);
    }

    request({
        url: api_url,
        method: 'post',
        json: data,
        headers: {
            "Authorization": "api_key",
            "Content-Type": "application/json",
        }
    }, function (err, res, body) {
        if (err) {
            console.error(err);
            return err;
        }
        getResults(JSON.parse(body));
    });
}

function getResults(data) {
    if (data.error) {
        console.error(data);
        return data.error;
    }
    request({
        url: results_url,
        method: 'post',
        formData: data
    }, function (e, r, body) {
        response = JSON.parse(body);
        console.log(response);
        if (!response.finished) {
            setTimeout(
                function () {
                    getResults(data);
                }, 1000
            );
        }

        console.log(response);
    })
}

convertFiles(file_list);

प्रतिसाद

/path/to/local/result.jpg

HTTP विनंती

POST /create-image/

क्वेरी पॅरामीटर्स

पॅरामीटर प्रकार वर्णन उदाहरण
is_sfw ऐच्छिक प्रौढ प्रतिमा सामग्रीसाठी "अटी" असल्यास "true" सेट करा true किंवा false
terms आवश्यक आहे तुम्हाला कोणती प्रतिमा तयार करायची आहे ते AI ला सांगा. शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला
negative_terms ऐच्छिक काय वगळले पाहिजे ते AI ला सांगा. डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला
dimension ऐच्छिक पोर्ट्रेट किंवा लँडस्केप प्रतिमा मिळवा, रिक्त किंवा शून्य असल्यास "पोर्ट्रेट" मूल्य डीफॉल्ट आहे. portrait किंवा landscape
fix_faces ऐच्छिक AI ला परिणाम प्रतिमांमधील चेहरे निश्चित करू द्या, पाठवले नाही तर फॉल्स व्हॅल्यू डीफॉल्ट आहे. true किंवा false
make_tile ऐच्छिक नमुना म्हणून वापरता येईल अशी प्रतिमा हवी असल्यास true सेट करा. true किंवा false
upscale ऐच्छिक AI मोठ्या आकाराची प्रतिमा परत करेल. true किंवा false
threesixty ऐच्छिक AI 360º प्रतिमा देईल. true किंवा false

प्रतिमा संपादित करा

 import requests
import time
import shutil
import json

headers = {"Authorization": "api_key"}
params = {
    "terms": "मांजरीचे पिल्लू",
    "is_sfw": True,
    "replacing": "फळे आणि फळ स्टेम",
    "negative_terms": "",
    "fix_faces": True,
    "outpaint": False,
    "upscale": False,
}
file_path = "path/to/test.jpeg"
base_api_url = "https://api.imageeditor.ai"
api_url = f"{base_api_url}/v1"


def download_file(url, local_filename):
    url = f"{base_api_url}/{url}"
    with requests.get(url, stream=True) as r:
        with open(local_filename, "wb") as f:
            shutil.copyfileobj(r.raw, f)
    return local_filename


def convert_files(api_url, params, headers):
    files = [eval(f'("files", open("{file_path}", "rb"))')]
    r = requests.post(
        url=f"{api_url}/edit-image/",
        files=files,
        data=params,
        headers=headers
    )
    return r.json()


def get_results(params):
    if params.get("error"):
        print(params)
        return

    r = requests.post(
        url=f"{api_url}/results/",
        data=params
    )
    data = r.json()
    finished = data.get("finished")

    while not finished:
        if int(data.get("queue_count")) > 0:
            print("queue: %s" % data.get("queue_count"))

        time.sleep(5)
        results = get_results(params)
        results = json.dumps(results)

        if results:
            break

    if finished:
        for f in data.get("files"):
            print(f.get("url"))
            download_file("%s" % f.get("url"), "%s" % f.get("filename"))
        return {"finished": "files downloaded"}
    return r.json()


get_results(convert_files(api_url, params, headers))
प्रतिमा संपादित करा

curl -X POST \
  https://api.imageeditor.ai/v1/edit-image/ \
  -H 'Authorization: api_key' \
  -F 'files=@test_files/test.jpeg' \
  -F 'terms=मांजरीचे पिल्लू' \
  -F 'is_sfw=true' \
  -F 'replacing=फळे आणि फळ स्टेम' \
  -F 'negative_terms=' \
  -F 'fix_faces=true' \
  -F 'outpaint=false' \
  -F 'upscale=false'


Get result image

curl -X POST \
  https://api.imageeditor.ai/v1/results/ \
  -F 'uuid=response_uuid'
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ERROR | E_PARSE);

$headers = array("Authorization: api_key");
$file_list = ['/test_files/test.jpeg'];
$api_url = "https://api.imageeditor.ai/v1/edit-image/";
$results_url = "https://api.imageeditor.ai/v1/results/";

function download_file($url, $filename){
    $curl = curl_init();
    $url = "https://api.imageeditor.ai" . $url;
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_SSLVERSION, 3);
    $data = curl_exec($curl);
    $error = curl_error($curl);
    curl_close ($curl);
    # Make sure destionation path exists
    $destination_path = "/path/to/result/files/";
    $destination_file = fopen($destination_path . $filename, "w+");
    fwrite($destination_file, $data);
    fclose($destination_file);
}

function convert_files($file_list, $headers, $api_url) {
    $post_data['terms'] = 'शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला';
    $post_data['is_sfw'] = true;
    $post_data['replacing'] = 'फळे आणि फळ स्टेम';
    $post_data['negative_terms'] = '';
    $post_data['fix_faces'] = true;
    $post_data['outpaint'] = false;
    $post_data['upscale'] = false;

    foreach ($file_list as $index => $file) {
        $post_data['file[' . $index . ']'] = curl_file_create(
            realpath($file),
            mime_content_type($file),
            basename($file)
        );
    }

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $api_url);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $content = curl_exec($curl);
    curl_close($curl);

    return json_decode($content);
}

function get_results($params, $results_url, $headers) {
    if ($params->error) {
        print_r($params->error);
        return;
    }

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $results_url);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, json_decode(json_encode($params), true));
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $content = json_decode(curl_exec($curl));
    curl_close($curl);

    if ($content->finished == false) {
        if (intval($content->queue_count) > 0) {
            print_r("queue: $content->queue_count");
        }

        sleep(5);
        $results = get_results($params, $results_url, $headers);
        return;
    }

    foreach ($content->files as $f) {
        download_file($f->url, $f->filename);
    }
}

$resp = convert_files($file_list, $headers, $api_url);
get_results($resp, $results_url, $headers);
?>
const request = require('request');
const fs = require('fs');

let file_list = ['/test_files/test.jpeg']
const api_url = 'https://api.imageeditor.ai/v1/edit-image/'
const results_url = 'https://api.imageeditor.ai/v1/results/'

function convertFiles(file_list) {
    let formData = {
        "terms": "शाळेत जाणारा ससा, अज्ञानी शैलीतील टॅटू कला",
        "is_sfw": true,
        "negative_terms": "डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला",
        "dimension": "landscape",
        "fix_faces": true,
        "make_tile": false,
        "upscale": false,
        "threesixty": false,
    };

    for (var i = 0; i < file_list.length; i++) {
        formData['files'] = fs.createReadStream(file_list[i]);
    }

    request({
        url: api_url,
        method: 'post',
        formData: formData,
        headers: {
            "Authorization": "api_key",
            "Content-Type": "multipart/form-data",
        }
    }, function (err, res, body) {
        if (err) {
            console.error(err);
            return err;
        }
        getResults(JSON.parse(body));
    });
}

function getResults(data) {
    if (data.error) {
        console.error(data);
        return data.error;
    }
    request({
        url: results_url,
        method: 'post',
        formData: data
    }, function (e, r, body) {
        response = JSON.parse(body);
        console.log(response);
        if (!response.finished) {
            setTimeout(
                function () {
                    getResults(data);
                }, 1000
            );
        }

        console.log(response);
    })
}

convertFiles(file_list);

प्रतिसाद

/path/to/local/result.jpg

HTTP विनंती

POST /edit-image/

क्वेरी पॅरामीटर्स

पॅरामीटर प्रकार वर्णन उदाहरण
is_sfw ऐच्छिक प्रौढ प्रतिमा सामग्रीसाठी "अटी" असल्यास "true" सेट करा true किंवा false
terms आवश्यक आहे तुमच्या प्रतिमेवर आधारित तुम्हाला काय हवे आहे ते AI ला सांगा. मांजरीचे पिल्लू
replacing ऐच्छिक वरील प्रॉम्प्टच्या आधारे तुम्हाला तुमच्या इमेजमधील काहीतरी बदलायचे असल्यास AI ला सांगा फळे आणि फळ स्टेम
negative_terms ऐच्छिक काय वगळले पाहिजे ते AI ला सांगा. डुप्लिकेट, खराब काढलेला चेहरा, विकृत, खराब काढलेली बोटं, कुरूप, अस्पष्ट, कार्टून, डिस्ने, फ्रेमच्या बाहेर, क्रॉप केलेला
fix_faces ऐच्छिक AI ला परिणाम प्रतिमांमधील चेहरे निश्चित करू द्या, पाठवले नाही तर फॉल्स व्हॅल्यू डीफॉल्ट आहे. true किंवा false
outpaint ऐच्छिक सुरुवातीची प्रतिमा दिल्यास, AI त्याचे "परिसर" तयार करू शकते true किंवा false
upscale ऐच्छिक AI मोठ्या आकाराची प्रतिमा परत करेल. true किंवा false