🖨️Mini Pocket Printer✨Printing Paper

Printer(Includes 1 roll of printer paper)- Green
$31.98
$59.00
-$27.02
Quantity
Description

The price is limited. BUY TODAY as the promotion is available🔥

⏰Handling time>> Priority is given to delivery after payment.
😊Returns>> 
Fast refund for any product quality issues within 30 days, support return.
🚢Shipping>>We'll arrange the fastest shipping for you. Free Shipping On Orders Over $39.99
🏆After Sales Service>>If you are not satisfied with the goods received, please contact us within 15 days after receipt, and we will give you the best help! Please don't worry!

This Mini Pocket Printer is a thermal printer and doesn’t require any ink which allows you to print photos and documents on the go. With its small size and lightweight design, it can easily fit in your pocket, purse or backpack, making it perfect for travel, business trips or simply capturing memories on the fly.

🖨️What Functions Provided in APP: APP is for free forever for users. 9 powerful functions for super easy unique customization. Combining text, pictures, tables, emojis and QR code freely to make unique sticker pictures. Hundreds of free templates and graphics provided in APP. “OCR” and “Scan” make it possible to transfer an objects or words in daily life into digital editable version. Moreover, micro letters, banners, online web printing are achievable in APP.

🖨️Save Time and Money:T02 thermal photo printer features a high quality inkless thermal print head for clear, smooth, fast printing and no ink or toner required; reliable 203 dpi print quality for black and white images and text for a wide range of stickers, labels, general photos, scrapbooking, memo printing, and Compatible with different types of thermal paper, self-adhesive thermal paper, patterned thermal paper,etc. Make memories of your life with the T02 pocket wireless bluetooth printer.

🖨️Easy to Use: Enjoy printing in just 3 steps. Step 1: Place the paper roll in your device. Step 2: Download the Phomemo app and connect your phone to the sticker printer. Step 3: Edit your content in the app and print it out!

Equipped with Bluetooth connectivity option, which enables you to easily connect your smartphone, tablet, or laptop, and print your favorite photos or important documents in just a few seconds. It's compatible with both iOS and Android operating systems, and you can download its companion app to manage your printing needs.

🖨️Use Occasions: Memoking T02 203dpi small wireless printer is suitable for printing black and white photos, memos, records, plenty of APP themes in your home, school and office for students, children, teachers, handwork teaching, work plans, shopping lists, “TO DO” lists and so on. 

🖨️Compact and Portable: Only measuring half the size of a phone and weighing 150g which is easy to be put even in your clothes’ pocket and carry it anywhere you want. Convenient for children, teachers to take it from home to school or for travel printing. No ink or toner needed. 

Overall, the Pocket Mini mobile printer is an excellent choice for anyone who needs to print on the go. It's small, easy to use, and produces high-quality prints, making it a must-have device for both personal and professional use. As a Christmas gift, birthday gift, anniversary gift, New Year gift to family or friends the best choice, widely used at home, office and school or travel...

⭐Product Information:

  • Printing Method: Direct Thermal Printing (no ink, no toner)
  • Size: 3.4"x3.5"x1.6"/87x90x40mm
  • Weight: 5.3oz/150g
  • Color Available: Green/Pink/Blue/Yellow/White
  • Battery: 1000mAh
  • Charge Way: USBCompatible
  • System: iOS & Android

⭐Printer Packing List:

  • T02 Mini Pocket Printer x1
  • Power Cord x1
  • Paper Holder Baffle x1
  • Printing Paper x1
  • Manual x1

⚡️Stock sells fast - get yours today!

🌎 Worldwide Shipping ✈  
Please do note that shipping is insured. However, you may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for! 😉
🔒 100% Risk-Free Purchase 🔥 
If the product you received is damaged, don't worry. Just hit the Contact us button and send us a message, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.

Our Warehouse

Please consider any holidays that might impact delivery times.Please consider the transportation methods and unexpected situations that may affect the delivery time.

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.