Generador de Código QR en Masa
Pega un CSV de pares de nombre de archivo, valor y descarga un ZIP de un PNG por fila.
Respuesta rápida: Generador de Código QR en Masa: pega un CSV con pares de nombre de archivo y valor, y descarga un ZIP con un PNG por fila. Funciona íntegramente en tu navegador, es gratuito y no requiere registro.
Última actualización
Bueno saber
The CSV format here is intentionally minimal — filename,value per line — because that is all you need to turn a spreadsheet column into a folder of scannable codes. Export the two columns as CSV, paste, and you get one 512×512 PNG per row, each named after the first column so they sort predictably when you unzip them. It is the fastest path for table numbers, asset tags, event badges, or a catalog where every SKU needs its own code.
Watch out for commas inside a value: because the split is on the first comma, a URL with query parameters like ?a=1,2 can break the parse. If your values contain commas, wrap the field in quotes or strip them first. Blank lines are skipped, and leading or trailing spaces in the filename can produce awkward names on some operating systems, so trim your source column before pasting.
Everything runs in your browser, so the practical ceiling is memory rather than a server quota — a few thousand rows is comfortable, but generating tens of thousands of codes at once can make the tab sluggish while it builds the ZIP. If you need custom sizing, colors, or a higher error-correction level per code, generate those one at a time with the single QR generator instead.
Because these are static QR codes, the data is baked in and there is no redirect to expire — but that also means a typo in your CSV becomes a permanently wrong code. Scan a couple of the generated PNGs with your phone before you print the whole batch onto stickers.
Preguntas frecuentes
- ¿Es gratuito el generador de QR por lotes?
- Sí, es gratuito, sin registro ni límite por lote.
- ¿Se suben mis valores?
- No, cada QR se genera y se comprime completamente en tu navegador.
- ¿Cuántos códigos puedo generar a la vez?
- Hasta unos pocos miles en una laptop moderna. El embotellamiento es la RAM del navegador, no nuestro servidor.
- ¿En qué formato obtengo los códigos?
- Un ZIP que contiene un PNG de 512×512 por cada fila de CSV, nombrado según la primera columna.
- ¿Puedo personalizar el tamaño?
- No en la herramienta de lotes; todos los PNG son de 512px. Usa la herramienta de QR único para tamaños personalizados.