How to remove the signature on the photo Xiaomi: date, model of the phone and watermarks

Watermarks and automatic photo signatures are a standard feature of many Xiaomi, Redmi and Poco smartphones that can annoy users, and these tags (date, device model or logo) appear on photos without a request, spoiling the composition and complicating subsequent processing. This is especially important for owners of devices with MIUI 12-15, Where the camera settings are often hidden in the deep menu.

In this article, we will analyze 5 proven ways to delete signatures – from disabling the function in the camera settings to software processing of already ready photos. You will learn how to remove date from photos on Xiaomi without loss of quality, which applications will help automate the process, and what to do if the watermark is β€œprinted” in the app. EXIF-And also, why do signatures sometimes come back after firmware updates, and how do you avoid them.

Why does Xiaomi add captions to the photo?

The auto-signature feature appeared in MIUI as a marketing ploy and branding element.

  • πŸ“’ Brand Advertising: Watermark with the model name (Redmi Note 12 Pro)+, Poco X5 etc.) shared with the photo on social media.
  • πŸ—“οΈ Sorting convenience: the date and time of the shooting help you quickly navigate the gallery.
  • πŸ”’ Copyright: Signature makes it harder to steal a photo (although it's a weak protection).
  • πŸ“Š Statistics: Xiaomi tracks the popularity of models among users.

But for most owners, these β€œpluses” turn into disadvantages: captions spoil the aesthetic of photos, interfere with printing or professional processing, and the feature is activated by default on many devices, and users only learn about it after taking the first photos.

⚠️ Note: Some models (e.g. Xiaomi 13 Ultra or Redmi) K60 Pro) Watermarks are added not only to the main camera, but also to ultra-wide lens or telephoto shots. Check all camera modules after the function is disabled!

Method 1: Disabling the signature in the camera settings

The easiest method is to deactivate the function directly in the Camera app. The interface may vary slightly depending on the MIUI version and the smartphone model, but the overall algorithm is the same:

  1. Open the Camera app.
  2. Touch the badge. βš™οΈ Settings (usually in the upper right corner).
  3. Scroll down to the Watermark or Photo Signature section.
  4. Switch the slider to the off position.
  5. Save the changes (if required).

On some devices (such as the Poco F5 or Redmi Note 11), the path may look like this: Camera settings β†’ Additional β†’ Date tag/watermark.

β˜‘οΈ Verification of deactivation of signature

0

If after disconnection watermarks continue to appear, the reason may lie in:

  • πŸ”„ Camera cache – clear the application data in Settings β†’ Annexes β†’ Camera. β†’ Warehouse.
  • πŸ“± Updates to the firmware - after the update MIUI settings can be reset.
  • πŸ“ Third-party camera modules (such as GCam) that have their own settings.

Method 2: Delete the signature through editing EXIF-data

If a watermark is already added to the photo and there are no source codes without it, you can try to remove it software. Xiaomi signatures are often stored not as part of the image, but in EXIF metadata.

AnnexPlatformFeaturesReference
EXIF EraserAndroidDeletes all metadata, including geotaggedGoogle Play
Photo Exif EditorAndroid/iOSAllows you to edit individual EXIF fieldsApp Store
ExifTool (GUI)Windows/macOSProfessional tool for mass processingOfficial website
Metadata RemoverOnlineIt works through the browser, does not require installationVerexif

Instructions for EXIF Eraser (Android):

  1. Install the app from Google Play.
  2. Select a photo from the gallery.
  3. Press Delete EXIF.
  4. Save the processed image (the original will remain intact).

⚠️ Attention: Removal EXIF-It erases all meta-information, including the date of the shooting, geolocation and camera parameters. If that data is important, save a copy of it beforehand!

What if the signature remains after the EXIF is deleted?

Method 3: Use of third-party cameras (GCam, Open Camera)

Xiaomi’s stock Camera app isn’t always flexible in settings. Alternative cameras (like Google Camera or Open Camera) allow you to have full control over the shooting process, including the absence of watermarks.

Advantages of third-party cameras:

  • 🚫 No forced signatures – no date, no device model.
  • πŸ“Έ Advanced settings: manual focusing, RAW-filming, night mode.
  • πŸ”§ Module support (e.g. GCam works better with Xiaomi telephoto lenses).

How to install Google Camera:

  1. Download the compatible version of GCam for your model (for example, from the Celso Azevedo forum).
  2. Install. APK-file (allow installation from unknown sources in security settings).
  3. Open GCam and go to Settings β†’ Camera Settings β†’ Watermark (turn off the option).
πŸ“Š What camera do you use on Xiaomi?
Stock (from Xiaomi)
Google Camera (GCam)
Open Camera
other

Important: Not all versions of the GCam support Xiaomi multi-module cameras (e.g., the 200MP sensor in the Redmi Note 12 Pro+). Check compatibility on thematic forums (4PDA, XDA Developers) before installing.

Method 4: Photo editing in graphic editors

If the watermark is printed into the image itself (rather than the metadata), it can be removed with editors.

EditorialDifficultySuitable forReference
SnapseedEasy.Removing text by the Healing toolGoogle Play
Adobe Photoshop ExpressMediumSpot retouching and cloningGoogle Play
InpaintEasy.Automatic removal of objectsOfficial website
GIMPDifficult.Professional processing (similar to Photoshop)Official website

Step-by-step instructions for Snapseed:

  1. Open the photo in Snapseed.
  2. Select the Healing tool (the patch icon).
  3. Swipe around the watermark with your finger.
  4. Click Ready and export the image.

For complex cases (such as a signature on a textured background), use cloning in Photoshop Express:

  1. Choose Spot Heal or Clone Stamp.
  2. Set the appropriate size of the brush.
  3. Swipe the watermark by copying the neighboring pixels.

πŸ’‘

If you have a signature on a homogeneous background (sky, wall), use the color replacement tool in Snapseed – it will quickly remove text without traces.

Method 5: Massively delete signatures using scripts

If you have hundreds of watermarked photos, manual editing will take too long, and Python scripts or specialized programs can help automate the process.

Example of a script for removal EXIF-Data (Python 3 and Pillow library required):

from PIL import Image


import os





folder = "path to folder s photo"




for filename in os.listdir(folder):




if filename.endswith((".jpg", ".png", ".jpeg")):




img = Image.open(os.path.join(folder, filename))




data = list(img.getdata())




img_without_exif = Image.new(img.mode, img.size)




img_without_exif.putdata(data)




img_without_exif.save(os.path.join(folder, f"clean_{filename}"))

To launch:

  1. Install Python.
  2. Install the Pillow library with the command: pip install pillow
  3. Save the script to the file remove_exif.py.
  4. Run it from the command line, pointing the way to the folder with the photo.

For mass removal of visible watermarks, Inpaint is suitable in batch mode:

  • Add all the photos to the program.
  • Mark the signature areas (the Marker tool).
  • Run the processing for the entire folder.

⚠️ Note: Automatic scripts can delete all metadata, including useful ones (e.g. color profile!

Frequent problems and their solutions

Even after disabling the signature in the settings, users are faced with the return of watermarks. Let's consider typical situations and ways to solve them:

Problem.Possible causeDecision
Signature returns after rebootResetting camera settings due to MIUI errorClear the camera cache in Settings β†’ Apps
Watermark is only in the photo from the telephoto lensSeparate settings for each camera moduleDisable the signature in the settings of each lens
The caption remains when filming in RAWRAW-Files are processed separatelyUse a third-party camera (such as an Open Camera)
The date appears only in the gallery, not in the file manager.Overlay Gallery MIUI adds caption when viewingDisable the display of metadata in the gallery settings

If none of these methods worked, the reason could be:

  • πŸ“± Castile firmware - some assemblies MIUI modify camera settings.
  • πŸ”§ Operator policy – on firmware from mobile operators (for example, MTS or Beeline) there may be additional restrictions.
  • πŸ“Έ Hardware features – on some models (for example, Xiaomi Mi) A3 With Android One, watermarks are added at the processor level ISP.

πŸ’‘

If the watermark appears even after the phone is reset to factory settings, the problem is most likely the firmware. Try updating MIUI to the latest version or installing a global/European build.

FAQ: Frequent questions about watermarks on Xiaomi

Can I remove the caption from the photo without losing quality?
Yes, if the watermark is stored in EXIF-data (not pixelated). Use it. EXIF Eraser or Photo Exif Editor, which removes metadata without losing image quality, but if you see the signature in the photo, you'll have to edit the image in Snapseed or Photoshop, which can make the detail a little bit worse.
Why did the watermarks return after the MIUI update?
MIUI updates often reset the user's camera settings. This is because Xiaomi considers watermarks to be "features" rather than a bug. To avoid returning signatures: Before upgrading, back up the settings via Settings β†’ My device β†’ Backup. After the update, immediately check the camera settings. If the feature is activated again, turn it off and clear the camera cache.
How to remove date from a photo on Xiaomi without root rights?
Root rights are not required to remove watermarks. All methods described in the article (disable in settings, EXIF-editors, third-party cameras) work without root. Exception - if you want to completely remove the system application Camera, but this is not advisable, since it is enough to disable the signature function.
Is there a way to remove the watermark from screenshots?
Xiaomi screenshots don't add watermarks, only for photos taken by the camera. If you see a caption in a screenshot, it was added by a third-party app (e.g. Game Turbo while recording gameplay). To remove it: Turn off screen recording in Settings β†’ Special Features β†’ Screen recording. Use the standard screenshot tool (Power buttons + Volume reduction).
Can I return the watermarks if I need them?
Yes, you can turn the feature back on in the camera settings at any time. If the original unsigned photos have already been processed, add a date or logo with the help of editors: Photoshop (Tool Text). Canva (Date Templates). Lightroom (Presets for watermarks). To automatically add, use apps like Watermark Photo (Google Play).