Sharper lines and details · Cleaner images with less noise · Made for artwork and photos · Enlarge images up to 16×
Bigjpg reconstructs lines, colors, and fine details instead of simply stretching pixels.
Each plan has its own quota cycle. Times are shown in your local time zone.
| No. | Product | Payment time | Creation time |
|---|---|---|---|
| [[ $index + 1 ]] | [[ vm.orderGoods(order.goods) ]] | [[ order.pay_time ]] | [[ order.create_time ]] |
No purchase records
Only enlarging records from the last day are shown.
/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())
After upgrading: