Skip to content
Advertisement

Django Simple Captcha image size

How can I change captcha image size and text padding in image?

I read official docs and havn’t found any of those.

Advertisement

Answer

I have never used this app, but I’ve found in code something:

JavaScript

So if you call captch_image with additional paramater scale, you can change the size. If you use urls for this app like

JavaScript

You can change scale parameter right in the line.

If you want to change proportions of dimensions, I think it is not supported, because

JavaScript

They are hardcoded in the function captcha_image. But you can replace the font.

Advertisement