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

Individual video watermark for user

Need to set individual watermark for each user while he downloads video. Watermark should be placed for 3-5 seconds in the same place and starts from N second of video. How I can do it without full video reconvert and as fast as it can be.
zona
  • 89
  • 8
2
votes
1 answer

PHP: Add a Transparent PNG to a JPEG with Opacity

This seems to be a common question, but trying all the combinations, I have found, it still is not working for me. My PNG watermark is transparent and I wish to overlay the original JPG with this watermark and add a 50% opacity to the watermark. The…
mcl
  • 691
  • 2
  • 10
  • 23
2
votes
1 answer

How to add a watermark to all images in a folder using ImageMagik

I have been trying to find a way of watermarking all .jpg files in a given folder using ImageMagik directly from the terminal. I have searched a lot and I found the following: composite -compose atop -gravity southeast -geometry +10+10 wm.png…
G.Vasilev
  • 83
  • 3
  • 12
2
votes
2 answers

Add a watermark to image before uploading? AS3 + Flex

For the past few hours I've been trying to figure out a way to add a watermark to an image file before uploading it using the FileReference.upload(); method. The uploading works already. I just have to figure out how to get a small watermark (PNG…
Propeller
  • 2,465
  • 6
  • 35
  • 49
2
votes
2 answers

Android - Resizing and adding watermark to photo delivers poor quality image

This is an Android question: I am taking a jpeg picture taken with the camera and resizing it to 640 x 480 resolution after which I add a watermark to the image. This bitmap is then compressed to a jpeg file and saved. The problem is that the…
Rynardt
  • 5,547
  • 7
  • 31
  • 43
2
votes
2 answers

Centralized image server with security and water mark on it

I have a situation where I have to make a centralized image website. I want to secure those images from direct access. I want to send response with a watermark over it depending on request parameter. What is the best approach for it. So far I have…
शेखर
  • 17,412
  • 13
  • 61
  • 117
2
votes
2 answers

invisible watermark for images

Can someone give me a link to a good tutorial about adding invisible watermarking on images in java.I searched on the net but I couldn't find a tutorial!
adrian
  • 4,574
  • 17
  • 68
  • 119
2
votes
2 answers

Silverlight Watermarked AutoComplete Box

Can someone direct me to an example or explanation that will help me either: Extend the SilverLight AutoComplete Box to allow watermarks. Extend the Watermark TextBox to allow AutoComplete functionality. It strikes me that option 1 would be…
Steve Brouillard
  • 3,256
  • 5
  • 41
  • 60
2
votes
1 answer

How to watermark some vector data in an invisible way?

I have a some vector data that has been manually created, it is just a list of x,y values. The coordinate of the points is not perfectly accurate - it can be off by a few pixels and it won't make any perceivable difference. So now I am looking for…
laurent
  • 88,262
  • 77
  • 290
  • 428
2
votes
1 answer

Spark Structured Streaming - watermark being ignored, old data being output

I have a sample Spark Structured code, and I'm trying to implement/test out watermark to account for late-coming data. Somehow, the watermark is being ignored and the older data is being published even when if the timestamp of the old data is more…
Karan Alang
  • 869
  • 2
  • 10
  • 35
2
votes
1 answer

Watermark location is different in word and PDF document in MS interop C#

In my program, there is a function with which users can add watermark to docx or PDF files. Application wordApp = new Application(); wordApp.Visible = false; wordApp.ScreenUpdating = false; Microsoft.Office.Interop.Word.Document wordDoc =…
LFLJM
  • 65
  • 10
2
votes
1 answer

Watermark rotation in codeigniter

I find the codeigniter image library is very useful, lot of features there. Only one point that I can't find, it is the watermark rotation. Anyone here ever done this using codeigniter image library? Thanks in advance
Ronggur
  • 23
  • 2
2
votes
1 answer

Flink KeyedProcessFunction.Context .timerService().currentWatermark() is always Long.MIN

I am currently trying to write some tests for our flink stream processing, and have something such as env.fromCollection(events) .assignTimestampsAndWatermarks(new BoundedOutOfOrdernessTimestampExtractor<>(Time.milliseconds(1000)) { …
Andra Turc
  • 41
  • 1
2
votes
1 answer

Accessing current watermark in Spark Structured Streaming

Is there any way to access current watermark value in Spark Structured Streaming? I'd like to process events in their event-time order to find patterns in sequences. To do it I was thinking of using flatMapGroupsWithState and buffer events till the…
2
votes
2 answers

How add watermark diagonally limiting height and width according to background image specifications without losing logo quality?

Question summary: My expected result is to be able to frame the watermark diagonally and regardless of the width and height of the background image, it always fits within the limits and with dimensions that maintain the quality of the logo. In…
Digital Farmer
  • 1,705
  • 5
  • 17
  • 67