All Generators
Revolut Statement $ 1.99
Revolut Statement Online Generator
You can create high quality Revolut Statement without Photoshop and PSD templates in 2 minutes. Enter data in all fields, upload your photo and signature, and click Generate button.
Our features
- High quality document templates with original fonts
- Automatically generating valid PDF417 barcode and Code 128
- Automatically generating MRZ with valid check digits
- Automatically removing background from a photo of a person
- 30+ random backgrounds
How does it work?
API
Now you can use your API for creating documents automatically. Please read this tutorial for our API.
$ pip install veriftools requests
from veriftools import veriftools
generator_url = 'https://api.verifblog.com/en/revolut_statement/'
user = {
'login': '<your login>',
'password': '<your_password>'
}
data = {
'NAME': 'John Doe',
'ADD1': 'Hauptstrasse 123',
'ADD2': 'Berlin',
'ADD3': '12345',
'DATE1': 'Jan 1, 2022',
'DATE2': 'Jan 31, 2022',
'HZNUMBER': 'LT12 1234 1234 1234 1234',
'CONST3': 'REVOLT21',
'CONST': 'Germany',
'CONST2': 'DE',
'BACKGROUND': 'Photo',
}
images = {
}
url = generate-online.generate_image(generator_url, user, data, images)
if url:
generate-online.download_image(url, f'result_image.jpg')