libqrencode icon indicating copy to clipboard operation
libqrencode copied to clipboard

Setting --dpi has no effect on the PNG output

Open pd3 opened this issue 10 months ago • 2 comments

In version 4.1.1 setting the -d, --dpi option has no effect.

Steps to reproduce:

$ qrencode -V
qrencode version 4.1.1
Copyright (C) 2006-2017 Kentaro Fukuchi

$ qrencode -d 72 -t PNG -o rmme.png "test"
$ identify rmme.png 
rmme.png PNG 87x87 87x87+0+0 8-bit sRGB 290B 0.000u 0:00.000

$ qrencode -d 300 -t PNG -o rmme.png "test"
$ identify rmme.png 
rmme.png PNG 87x87 87x87+0+0 8-bit sRGB 290B 0.000u 0:00.000

pd3 avatar Sep 02 '23 10:09 pd3