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
4
votes
2 answers

Flink WaterMark And Triggers - Late elements not discarded on event time?

I am somewhat confused by how Flink deals with late elements when watermarking on event time. My understanding is that as Flink reads a stream of data, the watermark time is progressed upon seeing any data which has a larger event time than that of…
GeorgeWilson
  • 562
  • 6
  • 17
4
votes
2 answers

How to add auto image watermark in orchard CMS?

I use Orchard cms. I want when images uploaded, the images get watermark automatically. How can I do this?
4
votes
2 answers

How add watermark to ghostscript with command line?

Is any way to add watermark on each pdf with command line? because I need set up params from code 'gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="7ed753c56994067cb0c8dc18fbf14921.pdf" "b79d2282c15b7e824cb8ee400401161d.pdf"…
kusanagi
  • 14,296
  • 20
  • 86
  • 111
4
votes
1 answer

Watermark a video programmatically

So I am looking for a way to watermark videos uploaded to my site programmatically. I have looked at ffmpeg-php however this will not work as I am using shared linux hosting. I'm wondering if anyone knows of a way that I can programmatically add a…
Bot
  • 11,868
  • 11
  • 75
  • 131
4
votes
2 answers

Repeating watermark php

I am using Intervention Image image manipulation library this library in a project and I am stuck on adding watermark image all over the source image. Is it possible to repeat the watermark image on all over the source image like in the following…
Shifrin
  • 154
  • 1
  • 11
4
votes
3 answers

Creating a watermark in Python

I'm trying to figure out how to create this kind of watermark, especially the one that's in the center (it's not an ad, it's just a perfect example of what I want to accomplish):
imatahi
  • 591
  • 1
  • 8
  • 16
4
votes
4 answers

How to get the model name or model class of a waterline record?

While different from a previous question I asked here, it's related and so wanted to link it. I have been trying hard to find out how I can get the model name (identity) or model "class" (exposed in sails.models) of a record. So, given a waterline…
Huafu
  • 2,445
  • 1
  • 22
  • 26
4
votes
3 answers

Watermarking on existing video

I'm looking for a method to watermarking on a video with C#. As writing text on it. Image or text label... How can I do it? Thanks.
Erçin Dedeoğlu
  • 4,950
  • 4
  • 49
  • 69
4
votes
1 answer

C# - Watermark passwordchar?

I'm currently making a login form to my program where I have a watermark for the two textboxes Email and Password. When a textbox is empty, its watermark text will appear in it like "Enter email here" and "Enter password here". My code so far is: …
user3036459
4
votes
3 answers

PHP watermarking

i am using this code to create watermark. $image = '1.jpg'; $overlay = 'stamp.png'; $opacity = "20"; if (!file_exists($image)) { die("Image does not exist."); } // Set offset from bottom-right corner $w_offset =…
Andromeda
  • 12,659
  • 20
  • 77
  • 103
4
votes
1 answer

How should I add a transparent watermark.png over my RTMP h264 stream with ffmpeg?

I have a Raspberry Pi with the new camera module hooked up to (in this case) Bambuser. You can see the stream here, it's from a windmill in The Netherlands (camera position will be better within a few weeks). I succesfully have the stream running,…
RoelandP
  • 253
  • 3
  • 7
4
votes
5 answers

Watermarking images on upload

I'm creating a website which requires the images in the site's Gallery to be watermarked. I'd prefer the watermark to get added programatically when the image gets uploaded to the application (via it's web interface) than to manually add it before…
Benny Hallett
  • 7,327
  • 4
  • 26
  • 26
4
votes
2 answers

Imagemagick place image in bottom right corner

I used the imagemagic to place the watermark image. I used the following code to display the watermark in center. shell_exec("composite -gravity center logo.png images/test.png images/test.png"); Now I want to display the watermark in bottom right…
designersvsoft
  • 1,861
  • 9
  • 39
  • 66
3
votes
1 answer

Watermarking a .png, .gif or .jpg with a .png, .gif or .jpg

I'm trying to write a function that will watermark any image (.png, .jpg or .gif) with another image that might also be one of those formats. I wish both of the images to retain transparency. I do not care about gif animation. Unfortunately, the…
Neob91
  • 344
  • 2
  • 12
3
votes
2 answers

Bind TextBox.Text in Watermark attached property to localize it

I need to add Watermarks to my WPF application and I am using this watermark service to achieve it. It works just as expected, but I need to localize the text showed as watermark and I can't find a way to achieve it. My xaml declaration:
JoanComasFdz
  • 2,911
  • 5
  • 34
  • 50