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

carrierwave watermark an image

Having inside my uploader: version :profile do process :resize_to_fill => [300, 300] process :quality => 90 process :watermark end then : def watermark manipulate! do |img| logo =…
Rubytastic
  • 15,001
  • 18
  • 87
  • 175
3
votes
3 answers

BUG in WPF? TextBlock inside Adorner display inverse text when FlowDirection is RightToLeft

I'm using adorner to display a watermark inside my textbox. but when i set FlowDirection of window to RightToLeft, text inside adorner (which is textblock) is inverse!!! Is that a bug or i should change something? and here is full code of…
Jalal
  • 6,594
  • 9
  • 63
  • 100
3
votes
2 answers

Serving thousands of images that are watermarked on the fly?

OK so I realise there are thousands of questions relating to this sort of thing however no answers really seem to cover my needs. So here is my problem. I have a real estate CRM system that several companies use to store their property details and…
Ash
  • 397
  • 1
  • 3
  • 10
3
votes
2 answers

Java - Properly drawing a multi-line String in an image

I am trying to write a watermarking program with java , So I found this piece of code for the same. I made my own adaptation for my purposes like so (Full src : https://gist.github.com/1373080/) /** * * This method converts a multiline string…
Gautam
  • 7,868
  • 12
  • 64
  • 105
3
votes
2 answers

How to create watermark text effect in jetpack compose

I would like to create a watermark effect in my app using text as shown in the picture below. I achieved this by using canvas and bitmap, is there any other reliable way to do this? Here is my composable function @Composable fun WaterMark( …
Sultan
  • 119
  • 1
  • 12
3
votes
1 answer

How can I repeat a watermark throughout a requested image using PHP?

I'm trying to add watermark to all the images in a directory, let's say www.example.com/private. Some of these images have massive resolutions, while others are relatively normal so at the moment my watermark is working fine for the smaller images.…
Ben
  • 315
  • 4
  • 19
3
votes
0 answers

Empty result after left-joining two streaming DataFrames and then aggregating them in PySpark

Data description I have two CSV files with logs - one contains Span logs, and the other contains Error logs (Elastic APM logs, for those who are acquainted). The relevant span fields are timestamp, id, name and duration, while the relevant error…
Gloripaxis
  • 1,026
  • 1
  • 9
  • 9
3
votes
2 answers

jquery autoSearch watermark

I'm using the jquery plugin wordFilter: http://people.apache.org/~gmonroe/wordFilter/index.html which gives the autoSearch function, which allows for automatically filtering a list of elements based on text typed into a text_field. It works great,…
brad
  • 31,987
  • 28
  • 102
  • 155
3
votes
2 answers

How to keep aspect ratio of Image and Watermark in Laravel php

I am trying to add Watermark of 800x100px to Images which can have any resolution greater than 800x100, i.e. 801x110, 1200x1000, 1300x200, 1920x1080, 4000x2010, etc. I want to keep the aspect ratio of Watermark and image to 2:50. i.e., if image has…
Anonymous Girl
  • 582
  • 8
  • 22
3
votes
1 answer

Get mask of watermark from image in Python

Given a series of photos that are watermarked, I want to isolate the watermark, and generate a mask. I'm using Python and numpy. I've added the pictures on top of each other: def compare_n_img(array_of_img_paths): img_float_array = [] for path in…
Leo B
  • 111
  • 5
3
votes
0 answers

Digital Watermarking: Blind detection with linear correlation

I'm trying to understand how a blind detection (detection without cover work) works, by applying linear correlation. This is my understand so far: Embedding (one-bit): we generate a reference pattern w_r by using watermarking key W_m:we multiply…
f_3464gh
  • 162
  • 3
  • 11
3
votes
1 answer

watermark on videos like tiktok watermark using ffmpeg

I want to add watermark on video using ffmpeg like tiktok videos, means watermark with logo name and user id and with reflecting diagonally each 5 sec or same interval of time, for simple watermark I am using following command.Please help ffmpeg -i…
Pythonsguru
  • 424
  • 3
  • 11
3
votes
1 answer

Contour around watermark opencv

I want to draw a box around the watermark in my image. I have extracted the watermark and have found the contours. However, the contour is not drawn around the watermark. The contour is drawn across my full image. Kindly help me with the correct…
Emm
  • 71
  • 8
3
votes
2 answers

Dotnet Core 3.1 cors issue when serving static image files

I host my dotnet core 3.1 API with Angular on different domain than my frontend html site. I am using jquery watermark plugin to add watermark on my images, but sometimes, the image shows normally but watermark is not added. When i checked the…
Lance
  • 307
  • 4
  • 14
3
votes
1 answer

Shifting overlay position every x seconds

Currently, I add a watermark to the bottom right of my video to prevent others from republishing it. However, they blur the watermark so I'm thinking of adding a moving watermark that changes its position every x seconds. Below is my current ffmpeg…
David Tran
  • 63
  • 1
  • 9