Privacy Policy

Your privacy is our top priority. This policy explains our approach to data and privacy.

Last Updated: September 26, 2026

Our Privacy Guarantee

Blur My Text is built with privacy-first principles. We do not collect, store, or have access to your images. All image processing happens entirely in your web browser using client-side JavaScript. Your images never leave your device.

1. Information We Collect

Images You Edit

We do not collect, upload, store, or process your images on our servers. When you upload an image to Blur My Text, it is loaded directly into your browser's memory and processed using the HTML5 Canvas API. The image never leaves your device.

Local Storage

We use browser local storage only to save your theme preference (light mode or dark mode). This data:

  • Stays on your device
  • Is not transmitted to any server
  • Can be cleared anytime by clearing your browser data

Analytics & Tracking

We do not use analytics, tracking pixels, cookies, or any third-party tracking tools. We do not monitor your usage, track your behavior, or collect any information about how you use our service.

2. How We Use Your Information

Since we don't collect your information, we don't use it for anything. Your images are processed entirely on your device for the sole purpose of applying blur or blackout effects as requested by you.

3. Information Sharing

We do not share, sell, rent, or trade your information with third parties because we don't have access to your information. Your images and edits remain completely private to you.

4. Data Security

Your images are processed using industry-standard web technologies (HTML5 Canvas API) directly in your browser. No data transmission to external servers means no risk of data breaches, unauthorized access, or interception during transmission.

The edited images you download are saved directly to your device. We recommend:

  • Deleting the original unedited screenshot after editing
  • Storing edited images securely on your device
  • Being cautious about where you share edited images

5. Third-Party Services

Blur My Text loads fonts from Google Fonts CDN for typography. This is the only external resource loaded. Google Fonts may collect basic information like IP addresses and font usage for their own analytics, which is covered by Google's Privacy Policy.

No other third-party services, APIs, or integrations are used.

6. Children's Privacy

Blur My Text does not knowingly collect any information from anyone, including children under the age of 13. Our service is designed to be used by anyone who needs to protect their privacy in screenshots, and we maintain the same zero-data-collection policy for all users regardless of age.

7. Your Rights

Since we don't collect your data, there's no data to access, modify, or delete. You have complete control over your images and can:

  • Use the service without creating an account
  • Process unlimited images without any tracking
  • Clear your browser's local storage at any time to remove theme preferences

8. International Users

Blur My Text can be accessed from anywhere in the world. Since all processing happens in your browser and no data is transmitted to our servers, there are no international data transfer concerns. Your data stays on your device, regardless of your location.

9. Changes to This Policy

We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated "Last Updated" date. Since we don't collect contact information, we cannot notify you directly of changes. We encourage you to review this policy periodically.

10. Contact Us

If you have questions about this Privacy Policy, please contact us:

Technical Details for Developers

For developers and technically-minded users, here's how our privacy protection works:

  • Client-Side Processing: All image manipulation uses JavaScript Canvas API (CanvasRenderingContext2D)
  • No Network Requests: Image data is never included in any HTTP request to our servers
  • FileReader API: Images are read using the FileReader API, which keeps data in browser memory
  • Local Download: canvas.toDataURL() creates a data URL that's downloaded directly via the browser's download API
  • Open Source: Our code can be inspected in your browser's developer tools to verify these claims