अधिक स्पष्ट रेखाएँ और बारीकियाँ · कम नॉइज़ वाली साफ़ इमेज · आर्टवर्क और फ़ोटो के लिए · इमेज को 16× तक बड़ा करें
Bigjpg केवल पिक्सेल खींचने के बजाय रेखाओं, रंगों और बारीकियों को दोबारा बनाता है।
हर प्लान का अपना कोटा चक्र होता है। समय आपके स्थानीय समय क्षेत्र में दिखाया जाता है।
| क्रमांक | उत्पाद | भुगतान समय | निर्माण समय | रसीद |
|---|---|---|---|---|
| [[ $index + 1 ]] | [[ vm.orderGoods(order.goods) ]] | [[ order.pay_time ]] | [[ order.create_time ]] | रसीद |
खरीद का कोई रिकॉर्ड नहीं
केवल पिछले 1 दिन के बढ़ाने के रिकॉर्ड दिखाए जाते हैं।
/api/img_upload
curl -X POST https://bigjpg.com/api/img_upload \
-H 'X-API-KEY: YOUR_API_KEY' \
-d 'filename=small.jpg' \
-d 'filetype=image/jpeg'
# Use url from the response to upload the file to R2.
curl -X PUT --upload-file small.jpg \
-H 'Content-Type: image/jpeg' \
'UPLOAD_URL'
import requests
filename = 'small.jpg'
filetype = 'image/jpeg'
r = requests.post(
url='https://bigjpg.com/api/img_upload',
headers={'X-API-KEY': 'YOUR_API_KEY'},
data={'filename': filename, 'filetype': filetype}
)
upload = r.json()
with open(filename, 'rb') as image:
requests.put(
url=upload['url'],
data=image,
headers={'Content-Type': filetype}
)
print(upload['fileurl']) # use as input in the enlarge API
/api/task/
curl -d '{"style": "art", "noise": "3", "x2": "1", "input": "YOUR_IMAGE_URL"}' \
-H 'X-API-KEY: YOUR_API_KEY' \
https://bigjpg.com/api/task/
import json
import requests
data = {
'style': 'art',
'noise': '3',
'x2': '1',
'file_name': 'small.jpg',
'input': 'YOUR_IMAGE_URL'
}
r = requests.post(
url='https://bigjpg.com/api/task/',
headers={'X-API-KEY': 'YOUR_API_KEY'},
data=json.dumps(data)
)
print(r.json())
/api/task/{task_ids}
curl https://bigjpg.com/api/task/tid1,tid2,tid3,tid100
import requests
r = requests.get(
url='https://bigjpg.com/api/task/tid1,tid2,tid3,tid100'
)
print(r.json())
/api/task/{task_ids}
curl -X POST https://bigjpg.com/api/task/tid1,tid2,tid3,tid100
import requests
r = requests.post(
url='https://bigjpg.com/api/task/tid1,tid2,tid3,tid100'
)
print(r.json())
अपग्रेड करने के बाद: