Description: With this support any developer would be allowed to do advanced controls while creating a QR code. Steps to Reproduce: - Actual Results: - Expected Results: - Reproducible: Always User Profile Reset: No Additional Info:
You have an extension for that: https://gitlab.com/mauriciobaeza/zaz-barcode/tree/master/files
(In reply to m.a.riosv from comment #1) > You have an extension for that: > > https://gitlab.com/mauriciobaeza/zaz-barcode/tree/master/files This extension support creating QR code too, but has simpler option than LibreOffice's QR Code Generator.
it's easy add more options... in the last version (0.6.0) you can call by code Sub Main() Dim args(2) As New com.sun.star.beans.NamedValue zaz = createUnoService("net.elmau.zaz.BarCode") args(0).Name = "Type" args(0).Value = "qrcode" args(1).Name = "Data" args(1).Value = "libreoffice.org" path = zaz.execute(args) MsgBox path args(0).Name = "Type" args(0).Value = "qrcode" args(1).Name = "Data" args(1).Value = "libreoffice.org" args(2).Name = "Path" args(2).Value = "/home/mau/tmp.svg" zaz.execute(args) End Sub
Moving to NEW
*** Bug 136770 has been marked as a duplicate of this bug. ***