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
0 answers

Dynamic Watermark in PDF

I need to add a dynamic watermark to my PDF document using javscript. E.g: When a customer does not accept the terms and conditions of a particular document (which is a flag from database), I need to have a watermark "Denied" (say) on the pdf. This…
Newman
  • 31
  • 3
3
votes
1 answer

Does there exist a digital image steganography algorithm which would be resistant to image manipulation?

I'm wondering - is there a steganography solution for digital images which is resistant to image manipulations? With "manipulations" I mean the most standard operations - recompressing JPEGs (or even changing file formats entirely), cropping and…
Vilx-
  • 104,512
  • 87
  • 279
  • 422
3
votes
3 answers

How can I add watermark text to a textbox in wpf?

Im working on a wpf application.How I can add watermark text to the textbox and passwordbox?
Ciupleu Sebastian
  • 133
  • 2
  • 2
  • 5
3
votes
4 answers

How to render a watermark with transparency into a video

I'm trying to render a watermark into a video. The moment the image file (.png) for the watermark contains transparency the image isn't rendered into the video anymore. If I convert that image to .jpg and back to .png it works well. If I create a…
PaulS
  • 145
  • 1
  • 5
3
votes
1 answer

C#: Watermark image has poor quality when saving JPEG

I'm trying to add watermark to image and save it at best quality, but when saving JPEG watermark has poor quality (but quality of main image is good). string wtrSrc = @"D:\watermark.png"; string imgSrc = @"D:\image.jpg"; string imgOutJPG =…
user1032559
  • 1,577
  • 1
  • 14
  • 16
3
votes
1 answer

How to scale and position watermark to scale?

I'm scaling a video and applying a watermark like so: ffmpeg -ss 0:0:0.000 -i video.mp4 -y -an -t 0:0:10.000 -vf \"[in]scale=400:316[middle]\" -b:v 2000k -r 20 -vf 'movie=watermark.png,pad=400:316:0:0:0x00000000 [watermark];[middle]…
Cobra_Fast
  • 15,671
  • 8
  • 57
  • 102
3
votes
1 answer

How do I add watermark text to my textBox (e.g. "type here...") in C++ winforms? (Vs2012)

I was wondering if anyone knew how to add watermark text (e.g. "type here..." in gray writing) to textboxes in visual studio 2012. I've searched the web for a solution to no prevail. Any help would be greatly appreciated. Note: I'm a beginner to C++
Daniel
  • 51
  • 1
  • 5
3
votes
2 answers

Jquery watermark plugin submits watermark as form's value in IE9

I am using this plugin: http://code.google.com/p/jquery-watermark/downloads/detail?name=jquery.watermark-3.1.4.zip and problem is it submits the watermark value as textbox's value in IE9. How can I avoid this issue? The issue is somewhat related to…
Jack
  • 7,433
  • 22
  • 63
  • 107
3
votes
2 answers

unrecognized option '-vf' in ffmpeg

I am running this command ffmpeg -i "video_in.mp4" -vf "movie=watermark.png [watermark]; [in][watermark] overlay=main_w/2-overlay_w/2:main_h/2-overlay_h/2 [out]" outputvideo.mp4 also tried /usr/local/bin/ffmpeg -i "video_in.mp4" -vf…
user1516976
  • 35
  • 1
  • 1
  • 4
3
votes
1 answer

png watermark in perl imagemagick, making png transparent

Need help with perl imagemagick! I am trying to put a png watermark on jpg image, $image = Image::Magick->new; $image->Read('image_filename'); $logo =…
voodoo
  • 31
  • 1
3
votes
3 answers

Content Water Marking

We have members-only paid content that is frequently copied and republished without our permission. We are trying to ‘watermark’ our content by including each customer’s user id in a fake css class, for example

(except not so…

Ian
  • 11,920
  • 27
  • 61
  • 77
3
votes
1 answer

Scaling a watermark to fit parent image

My photo sizes vary, they are either landscape, portrait or square, and I need to make a watermark the best fit for each photo - so I need to resize just the width of the watermark (without Imagick), as it's a long rectangle shape, so height doesn't…
TheCarver
  • 19,391
  • 25
  • 99
  • 149
3
votes
1 answer

TextBoxWatermarkExtender losing text after Response.Write

I am exporting an asp.net gridview to an excel sheet by Response.Write(*stringBuilder*), but when the button is clicked TextBoxesare losing TextBoxWatermarkExtender Text. Any idea? Thanks.
B10
  • 173
  • 1
  • 11
3
votes
2 answers

Android, How to add Movie mark (symbol) on images?

in my application I have a lit view. each row includes thumbnail image in left and some text in right. I can get image from server and inflate rows. everything about the list correct. it is like this image: when user click on rows video will play.…
Hesam
  • 52,260
  • 74
  • 224
  • 365
3
votes
1 answer

WatermarkExtender blinking when when UpdatePanel triggers on Timer

I put UpdatePanel with a Timer as a trigger in my webpage. Also, outside of the panel, I put a TextBox with a WatermarkExtender. When the timer ticks, the UpdatePanel refreshes. Also, the watermark blinks (it disappears from the text box and…