The Python Sudoku web has a script to get images of sudokus in PNG format. That script can be used to add sudokus to a web page.
Daily 4 sudokus are added, 1 for each of this handicaps: 0, 5, 10 and 15.
The size of the images is of 300x300, occupying approximately 6KBs, but a preview of 100x100 can be obtained, occupying approximately 2KBs.
The script has several parameters:
To add a sudoku in a web page you only have to add the following code where you want the sudoku:
Preview with link to Python Sudoku web (recommended):
<a href=”http://pythonsudoku.sourceforge.net/index.php?view&handicap=0#sudokus”><img src=”http://pythonsudoku.sourceforge.net/sudoku.php?thumb&format=png&handicap=0” /></a>
Sudoku image with link to Python Sudoku web:
<a href=”http://pythonsudoku.sourceforge.net/index.php?view&handicap=0#sudokus”><img src=”http://pythonsudoku.sourceforge.net/sudoku.php?format=png&handicap=0” /></a>
Sudoku image with link to the solved sudoku image:
<a href=”http://pythonsudoku.sourceforge.net/sudoku.php?solved&format=png&handicap=0”><img src=”http://pythonsudoku.sourceforge.net/sudoku.php?format=png&handicap=0” /></a>