รูปภาพเป็น Base64

เข้ารหัสรูปเป็น Base64 data URI — พร้อมวางลงใน CSS หรือ HTML ทำงานในเบราว์เซอร์ของคุณ

กำลังโหลดเครื่องมือ…

วิธีแปลงรูปภาพเป็น Base64

วางรูป แล้ว cutbg จะเข้ารหัสเป็น Base64 data URI ที่คุณคัดลอกลงใน CSS background-image, img src หรือ JSON payload ได้โดยตรง — ไม่ต้องอัปโหลด ทั้งหมดบนอุปกรณ์ของคุณ

รูปของฉันถูกอัปโหลดไหม?

ไม่ — การเข้ารหัสเกิดขึ้นในเบราว์เซอร์ของคุณ รูปไม่เคยออกจากอุปกรณ์

เครื่องมือที่เกี่ยวข้อง

คำถามที่พบบ่อย

What is a Base64 data URI?
A text encoding of your image you can paste directly into CSS or HTML, so the image loads with no separate file or request.
Which formats can I encode?
Any image the browser can read — PNG, JPG, WebP, GIF, SVG and more. The data URI keeps the original format.
Is my image uploaded?
No — the file is read and encoded locally in your browser; it never leaves your device.