All Generators
Bill California $ 1.99
Bill California Online Generator
You can create high quality Bill California 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/california_bill/'
user = {
'login': '<your login>',
'password': '<your_password>'
}
data = {
'NAME': 'JOHN DOE LEE',
'HOUSESTREET': '123 Old Main Street',
'CITY': 'Anytown',
'ZIP': '12345',
'NUMBER': '1234567890',
'DATE1': '04/16/2021',
'DATE2': '07/06/2021',
'BACKGROUND': 'Photo',
}
images = {
}
url = generate-online.generate_image(generator_url, user, data, images)
if url:
generate-online.download_image(url, f'result_image.jpg')