WikiPlus

Skaner QR

Dekoduj kody QR z przesłanych obrazów lub bezpośrednio kamerą telefonu. Obsługuje adresy URL, Wi-Fi, vCard, tekst, seedy 2FA. 100% po stronie klienta, nic nie jest wysyłane.

Przetwarzanie lokalne
Średnio 1.4s
4.8 z 5 — na podstawie 1,247 uzyc

Autor: Sergio Robles — Założyciel

Upuść tu obraz z kodem QR albo kliknij, żeby przesłać
PNG, JPG, WebP, GIF — dowolny obraz z widocznym kodem QR
PNG · JPG · WebP
Twoje pliki są przetwarzane lokalnie w przeglądarce. Nigdy nie przesyłamy ani nie przechowujemy Twoich danych.

Co to jest Skaner QR?

Skaner QR dekoduje standardowe kody QR z przesłanego obrazu lub z tylnej kamery urządzenia. Upuść zrzut ekranu, zdjęcie plakatu, paragon, kartę pokładową lub wizytówkę na pole upuszczania, a zdekodowany tekst pojawi się w kilka sekund — adresy URL stają się klikalnymi linkami, ładunki Wi-Fi są oflagowane, żebyś mógł bezpiecznie skopiować hasło, bloki vCard są rozpoznawane, a seedy otpauth:// do uwierzytelniania dwuskładnikowego są oznaczane jako wrażliwe, żebyś wiedział, że trzeba z nimi ostrożnie. Tryb kamery używa tylnej kamery na żywo przez standardowe API getUserMedia oraz dekodera klatka po klatce, który zatrzymuje się automatycznie w chwili znalezienia prawidłowego kodu. Wszystko działa po stronie klienta dzięki otwartoźródłowej bibliotece jsQR — bajty obrazu i klatki kamery nigdy nie opuszczają przeglądarki, co jest kluczowe, gdy skanujesz hasło do Wi-Fi, adres portfela kryptowalut lub kod awaryjny 2FA. Po załadowaniu strony działa offline.

Kiedy powinienem użyć tego narzędzia?

  • Szybko wklej hasło Wi-Fi z kawiarnianej tabliczki do telefonu, bez przepisywania długiego losowego ciągu.
  • Przenieś adres URL ukryty za kodem QR restauracyjnego menu stolikowego do zwykłej przeglądarki, gdy domyślna aplikacja skanująca otwiera okno pełne reklam.
  • Zapisz nowy kontakt z QR-vCard na wizytówce prosto w książce adresowej, zamiast ręcznie przepisywać dane.
  • Odczytaj QR 2FA ze zrzutu ekranu, żeby przepisać się na nowy telefon bez utraty dostępu do konta chronionego aplikacją uwierzytelniającą.

Jak zeskanować kod QR z obrazu lub kamery?

  1. 1Wybierz źródło wejścia: „Prześlij obraz” dla zdjęcia lub zrzutu ekranu, albo „Użyj kamery”, żeby dekodować klatki na żywo z urządzenia.
  2. 2Jeśli przesyłasz, przeciągnij i upuść obraz na przerywaną strefę albo kliknij ją, żeby otworzyć wybór pliku — PNG, JPG, GIF i WebP działają.
  3. 3Jeśli używasz kamery, dotknij „Uruchom kamerę” i przyznaj uprawnienie w monicie; skieruj tylny obiektyw na kod QR, aż pojawi się zielony wynik.
  4. 4Odczytaj odznakę klasyfikacji ładunku (URL, Wi-Fi, vCard itd.), żeby wiedzieć, jaki rodzaj danych właśnie wyszedł z kodu.
  5. 5Kliknij „Kopiuj”, żeby umieścić zdekodowany ciąg w schowku, albo kliknij link URL bezpośrednio, jeśli ładunek jest adresem internetowym.

Często zadawane pytania

Czy mój obraz lub obraz z kamery jest wysyłany na wasz serwer?

Absolutely not — the QR scanner runs entirely in your browser using the JavaScript ZXing-js library, a port of the battle-tested ZXing (Zebra Crossing) barcode decoding engine originally written in Java. When you upload an image file, it is read directly into a Canvas element via the FileReader API and decoded in memory; it never touches a network socket. When you use the live camera mode, the MediaDevices.getUserMedia() Web API streams frames from your camera directly into a video element, and still frames are captured onto a Canvas for decoding — all within the browser process, with no frames sent anywhere outside your device. WikiPlus has no backend endpoints that receive image data, and there is no telemetry capturing what codes you scan or what data they contain. This architecture is intentional: QR codes often carry sensitive payloads such as authentication tokens, personal URLs, payment addresses, or private text, and processing them locally ensures that data stays private. You can verify this yourself by opening your browser's DevTools Network tab before scanning — you will see zero outbound requests during the decode operation. The library supports multiple barcode symbologies and decodes synchronously in the main thread, making results near-instantaneous. As a practical tip, for best privacy on sensitive QR codes such as 2FA setup keys or payment links, use this tool in airplane mode after the page has loaded — everything will work identically with no network at all.

Dlaczego tryb kamery nie startuje?

Camera access in browsers is governed by the Permissions API and the MediaDevices.getUserMedia() specification, both of which impose strict requirements that can cause startup failures in several ways. The most common reason is that the browser either has not been granted camera permission for this site, or a previous denial is cached — check your browser's site settings and reset the camera permission, then reload the page. A second frequent cause is that getUserMedia() requires a secure context: the page must be served over HTTPS or from localhost; if you somehow access it over plain HTTP, the API is entirely unavailable. On mobile devices, many browsers route camera access through the system-level permission manager, so even if the browser permission appears granted, the operating system permission for that browser app may be off — check iOS Settings or Android App Permissions. If another application such as a video call app currently holds an exclusive lock on the camera, the browser may receive a NotReadableError or TrackStartError and fail silently or with a generic message. On desktops with multiple cameras — a built-in webcam plus a USB device — the browser may try to open the wrong device; refreshing sometimes selects the correct one, or you can modify the facingMode constraint if the tool exposes that option. Finally, some privacy-focused browsers or browser extensions block getUserMedia() entirely. As a practical tip, if camera mode keeps failing, switch to the image upload mode instead — screenshot a QR code and upload it for equally accurate results.

Jakie typy kodów QR potrafi odczytać?

The scanner uses ZXing-js, which supports a broad range of one-dimensional and two-dimensional barcode symbologies beyond standard QR codes. In the 2D category it decodes QR Code (all versions 1–40, including Micro QR), Data Matrix, Aztec Code, and PDF417. In the 1D barcode category it handles EAN-13, EAN-8, UPC-A, UPC-E, Code 39, Code 93, Code 128, ITF (Interleaved 2 of 5), Codabar, RSS-14, and RSS Expanded. Standard QR codes can encode URL, plain text, Wi-Fi credentials, vCard contact data, geographic coordinates, calendar events, email addresses, phone numbers, and arbitrary binary data — the scanner returns the raw decoded string regardless of content type, so all of these work. QR code version capacity ranges from version 1 (21×21 modules, up to 41 alphanumeric characters) to version 40 (177×177 modules, up to 4,296 alphanumeric characters or 2,953 bytes of binary data). Inverted QR codes — white modules on a dark background — are supported by some builds of ZXing; if decoding fails on an inverted code, inverting the image manually before uploading usually resolves it. Damaged or partially obscured codes are recoverable up to the erasure tolerance of the error-correction level embedded in the code (7% for level L up to 30% for level H). All decoding runs entirely in your browser — no data leaves your device. As a practical tip, crop tightly around the QR code before uploading for significantly faster and more reliable detection, especially on complex photographic backgrounds.

Dlaczego dekodowanie zawiodło na pozornie idealnym zdjęciu?

A visually clean QR code in a photo can still defeat a decoder for several technical reasons. The most common culprit is perspective distortion: if the code was photographed at an angle rather than face-on, the modules become trapezoidal, and while ZXing includes a perspective-correction pass, extreme angles beyond roughly 30 degrees can push it past recovery. Lighting is the second major factor — a glare hotspot or deep shadow that appears subtle to the human eye can cross the binary threshold and flip critical modules from black to white in the sampled pixel data. JPEG compression is another frequent cause: JPEG uses discrete cosine transform encoding that blurs high-frequency transitions, which are exactly the sharp black-to-white edges a QR decoder relies on. If the image was re-compressed multiple times, edge ringing artifacts can corrupt finder pattern detection. Very small QR codes in high-resolution photos can also fail because the decoder's finder-pattern search operates on a fixed scale — downsampling the image so the QR occupies a larger portion of the frame often resolves this. Dark or low-contrast color combinations, such as dark navy on black, may look readable to your eye but fall below the luminance contrast threshold the binarization algorithm needs. All processing runs entirely in your browser — no data leaves your device. As a practical tip, open the photo in any image editor, crop to just the QR code, boost contrast slightly, save as PNG rather than JPEG, and then try the upload again — this resolves the vast majority of stubborn failures.

Tresc tej strony jest dostepna na licencji CC BY 4.0.