Questions tagged [watermark]

A watermark is information embedded within a file. In the most common usage, watermarks are added to images to identify the image's creator.

Digital watermarks may be used to verify the authenticity or integrity of the carrier signal or to show the identity of its owners. It is prominently used for tracing copyright infringements and for banknote authentication.

Like traditional watermarks, digital watermarks are only perceptible under certain conditions, i.e. after using some algorithm, and imperceptible anytime else.

In contrast to a , watermarks can typically easily be added by a third party. A watermark can be forged, but should typically be hard to remove.

1196 questions
3
votes
1 answer

uncaught exception: Syntax error after jQuery upgrade

I am trying to upgrade an existing application from jQuery 1.3.2 to jQuery 1.4.2. When I do this, the page fails to load correctly and firefox's error console displays the error message "uncaught exception: Syntax error, unrecognized expression:…
wham12
  • 295
  • 5
  • 21
3
votes
2 answers

How to add watermark on PDF file in pure JAVA?

I would like to know if it's possible to watermark PDF file without any library. I managed to do that with iText, but I would like to do watermarks in pure JAVA. If someone knows if and how it's possible, please tell me.
Bouny
  • 43
  • 1
  • 1
  • 3
3
votes
6 answers

Watermark TextBox in ASP.NET MVC

What is the easiest way to implement watermark textbox control in ASP.NET MVC, are there any such controls on the internet (codeplex maybe). I suppose it is quite simple to write one extending HtmlHelper and using jquery watermark textbox…
adrin
  • 3,738
  • 8
  • 40
  • 60
3
votes
3 answers

Add Water mark to image in android

I want to add water mark to image in android app. In my app user can select a image and write text in a edit text,after pressing a button i want selected image with watermark text on it. I have try below code but it is not working. public static…
Ravi Bhandari
  • 4,682
  • 8
  • 40
  • 68
3
votes
4 answers

Append a dynamically changing watermark to a PDF in SharePoint

This is primarily a question of possibilities more than instructions. I'm a programming consultant working on a WSS project site system for my client. We have a document library in which files are uploaded to go through a complex approval process.…
Grace Note
  • 3,205
  • 4
  • 35
  • 55
3
votes
1 answer

How to add text to image?

I am trying to add text on my image with RMagick. This is my code: version :thumb do process :resize_to_limit => [400, 300] process :addt end def addt manipulate! do |img| title = Magick::Draw.new img = title.annotate(img,…
user3304086
  • 901
  • 1
  • 9
  • 19
3
votes
2 answers

How do I watermark an Android app?

I would like to distribute my app to a group of beta testers but would like to watermark specific version (APK?) to each tester. Is there a way to do so?
Roys
  • 31
  • 2
3
votes
1 answer

Rmagick setting opacity in watermark with transparency

I am trying to create a watermark with different opacity values (from 0 opaque value to 1 totally transparent). I have the following method for RMagick in ruby: # 0 = opaque (Magick::OpaqueOpacity) 1= transparent (Magick::TransparentOpacity) def…
shakaran
  • 10,612
  • 2
  • 29
  • 46
3
votes
0 answers

Robust invisible watermarking algorithm for embedding a sequence of numbers in a JPG image

I'm looking for a watermarking algorithm which is robust to scaling (up to 0.2 of the original image size), to cropping (at some extent) and JPEG compression. It should also be fast (at least the decoding phase) because I want the decoding done in…
Musti Rabin
  • 183
  • 1
  • 9
3
votes
3 answers

Watermark images with paperclip, rails 4

I've been attempting to add watermarks to my images, following the answer listed in watermark with paperclip : Watermark.rb: module Paperclip class Watermark < Processor # Handles watermarking of images that are uploaded. attr_accessor…
dmt2989
  • 1,610
  • 3
  • 17
  • 30
3
votes
1 answer

How to recognize PDF watermark and remove it using PDFBox

I'm trying to extract text except watermark text from PDF files with Apache PDFBox library,so I want to remove the watermark first and the rest is what I want.but unfortunately,Both PDmetadata and PDXObject can't recognize the watermark,any help…
Michael
  • 163
  • 1
  • 4
  • 12
3
votes
1 answer

How to improve watermark image in Python?

I am using Python for watermark image source code from this: import Image import ImageEnhance import random def _percent(var): """ Just a simple interface to the _val function with a more meaningful name. """ return _val(var,…
giaosudau
  • 2,211
  • 6
  • 33
  • 64
3
votes
2 answers

PHPExcel - Make a watermark for Excel .xls generated files

I have an application that works fine with PHPExcel to generate orders in Excel files. the client wants to have the order status as a watermark in Excel file. Is there a way to do this with PHPExcel? I have searched their doc and I found no…
Adrian P.
  • 5,060
  • 2
  • 46
  • 47
3
votes
4 answers

PDF Watermark for printing only, programmatically

I can watermark any PDF already, and the images inside, everything ok, but now I need the watermark only showing up when the PDF is printed... Is this possible? How? I need to do this programmatically of course.
Reinier
  • 33
  • 1
  • 4
3
votes
1 answer

How to dynamically generate an image overlay/watermark with Paperclip based on model instance attribute path

There are a number of similar questions/answers on SO, but none seem to solve my issue. My goal is to generate a 'dynamic watermark' (user avatar overlay on an another image) for an image using Paperclip. The problem I'm having is that I cannot…
Sauronlord
  • 237
  • 2
  • 13