watermark

Javascript "watermarks" for textboxes

I would like to know how to put text in a textbox when the page loads. Example: If I have a login page, I would have 2 textboxes named "username" and "password". When the page loads I want the the textbox to load with "username" written inside, so I won't have to put a label for that outside. But when the user clicks inside textbox it sh...

Datepicker Watermark

I found this answer in Stackoverflow for Removing Datepicker Watermark. <Style TargetType="{x:Type toolkit:DatePickerTextBox}"> <Setter Property="Text" Value="Bitte wählen" /> </Style> is it possible to set above using vb.net code. Thank you, Rey. ...

How to watermark a dynamically generated PDF so watermark seen through non-transparent cells

I have a dynamically generated PDF that can be in one of two modes. If in a draft mode, the only real difference is a watermark that states DRAFT on each page. I am using a page event, so on the startpage I print the image, so that it is under everything. When I did this on the endpage event then it would be on top of everything, which ...

adding a watermark image to an image

I want to add a small, kind of fading out watermark image to all my images. is there a way to do this in c#? ...

PDF Watermark for printing only, programatically.

Hi there folks, I'm stuck with the following problem: 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... I'm really stuck and running out of time, any help will be highly ...

jQuery <input> watermark that stays when focused

I have some <input>s on my form, and I would like to watermark them with field labels. There are already myriad watermarking plugins, but best as I can tell they all clear the watermark when the <input> is focused, even if there's nothing entered. What I'd like, ideally, is something that would continue to display until the user typed s...

FFMPEG: Watermarking videos using videos

I am using ffmpeg vhooks to watermark my videos using a static PNG image. It works well but now my requirement is changing from static images to watermarking videos with another video. Can I do that using ffmpeg? Or are there any other free libraries or CLI tools available for *nix environment to serve the purpose? ...

description text in a text field?

i want to put some description text in light grey in a text field. then when a user clicks on it the text disappears and he can type whatever he wants. is there a jquery plugin for this? i dont know what to search for in google. ...

Add watermark to various documents investigation

I've been asked to investigate the feasibility of adding watermarks to documents when printed through our application. The documents will consist of word, pdf and cad. The interface of the application is vb6 with a plethora of vc6 dll's. I can see a couple of possible solutions: Convert all documents to PDF, add a watermark and the...

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? ...

PHP Watermarking - Zubrag

I'm using zubrags PHP watermarking script (attached below) and it works great except when I try and use a PNG-24 as my watermark. The resulting image has a garbled, non-transparent watermark. I'm wondering if anyone could help explain what I would need to alter in the script below so that a PNG-24 embeds as a proper watermark on the im...

How do I implement a TextBox that displays "Type here"?

Displaying "Type here to ..." until the user enters text into a TextBox is a well-known usability feature nowadays. How would one implement this feature in C#? My idea is to override OnTextChanged, but the logic to handle the changes of Text from and to "Type here" is a bit tricky... Displaying "Type here" on initialization and removin...

Watermark asp:Login control Username and Password fields

Hi all, I'm trying to watermark the asp:Login controls' Username and Password fields with jQuery, I've tried various ways of referencing the control ID: $('#<%=ClientID.Login1_UserName %>').watermark('watermark', 'Username'); I have tried moving the ClientID, Login1 and UserName around and changing the selectors to and from userscore...

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. With multiple stages in this process, we have an extra field which dictates what the curren...

php run function on all images from one dir in recursive mode (noob)

hey guyz i have a function $result = create_watermark( 'input_file_name' ,'output_file_name'); i have dir called /images n have 500 images in it and all images are link images_(some_unknown_numbers).png (all png) now i want run them thru function in loop and want out put like /markedimage/images_1.png images_2.png images_3.pn...

Watermarking Flash Videos (server-side)

Hi all, I have a bunch of flash videos that I need to watermark with user related information, to make illegal re-distribution of these files harder. I'm wondering how can this be done server-side. If done client-side, it will be quite easy for the user to intercept the videos before they are watermarked. Since the watermark should co...

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 implementation. ...

how could create image watermark using ImageMagick

I am trying to convert a 8bpp (256) color gif to a 2bpp (4) color gif through ImageMagick. How can i put an semi-transparent image to the output file in ImageMagick? ...

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: Syntax error, unrecognized expression: search". How can I determine what is causing this exc...

RewriteCond simply doesn't work, doesn't check properly if file exists

Hey everybody. I've been trying to solve this for hours now but came up with nothing. Inside .htaccess, whenever somebody requests an image from a folder of my website, I'm trying to check if a file with the same name exists in another folder; if it does, return that file; if it doesn't, return the file originally requested. It seems ...