Tagged Questions
The masking tag has no wiki summary.
55
votes
9answers
2k views
Remove white background from an image and make it transparent
We're trying to do the following in Mathematica:
RMagick remove white background from image and make it transparent
But with actual photos it ends up looking lousy (like having a halo around the ...
16
votes
5answers
2k views
Password masking in C# console application
I tried the following code...
string pass = "";
Console.Write("Enter your password: ");
ConsoleKeyInfo key;
do
{
key = Console.ReadKey(true);
// Backspace Should Not Work
if (key.Key ...
5
votes
5answers
97 views
Is masking required in this case?
In the below code is the masking required for the assignment..
unsigned int x = 0x01020304;
unsigned char a1, a2, a3, a4;
a1 = (x >> 24) & 0xff;
a2 = (x >> 16) & 0xff;
a3 = (x ...
5
votes
4answers
215 views
Why does java.util.Random use the mask?
Simplified (i.e., leaving concurrency out) Random.next(int bits) looks like
protected int next(int bits) {
seed = (seed * multiplier + addend) & mask;
return (int) (seed >>> (48 ...
5
votes
2answers
763 views
Alpha masking in c# System.Drawing?
I'm trying to draw an image, with a source Bitmap and an alpha mask Bitmap, using the System.Drawing.Graphics object.
At the moment I loop X and Y and use GetPixel and SetPixel to write the source ...
5
votes
5answers
7k views
HTML/CSS - create alpha mask over image
I'd like to create an effect in a site I’m building where an image is masked by an overlay. The overlay should create a “fade out” effect — I don’t actually want anything animated, but the overlay ...
5
votes
2answers
526 views
jQuery zip masking for multiple formats
I have a requirements for masking a zip field so that it allows the classic 5 digits zip (XXXXX) or 5 + 4 format (XXXXX-XXXX).
I could so something like:
$('#myZipField').mask("?99999-9999");
but ...
5
votes
4answers
4k views
How to mask a password in Java 5?
I am trying to mask a password in Java. Sun java has suggested a way to mask a password as follows.
Masking a password
It uses a simple way to do that.
public void run () {
stop = true;
while ...
4
votes
2answers
123 views
Divs with transparent text in CSS?
I’ve been asked to create a CSS (non-HTML5) based site that has a filled div with a cutout that shows an image underneath it.
There are additional overlays and other images which makes using static ...
4
votes
1answer
2k views
Mask an EditText with Phone Number Format NaN like in PhoneNumberUtils
I want to make user inputted phone number in an editText to dynamically change format every time the user inputs a number. That is, when user inputs up to 4 digits, like 7144, the editText shows ...
3
votes
1answer
56 views
Python: multidimensional array masking
What is equivalent pythonic implementation for the following simple piece of code in Matlab.
Matlab:
B = 2D array of integers as indices [1...100]
A = 2D array of numbers: [10x10]
A[B] = 0
which ...
3
votes
2answers
961 views
C++ password masking
i'm writing a code to receive password input. Below is my code... the program run well but the problem is other keys beside than numerical and alphabet characters also being read, for example delete, ...
3
votes
1answer
257 views
Java library for image processing masking task
Is there any handy library can handle masking operation in Java? Taking care of element by element multiplication, masking boundary elements, etc. Thanks!
2
votes
1answer
105 views
Password input function in Lua
How to make CLI password masking in Lua? E.g. when I write password it changes into asterisk or nothing is shown at all? I need platform-independent solution as my script will be used in Java ...
2
votes
2answers
73 views
Masking text for transparency in CSS (cross-browser, not IE-6 or lower)
What i need is an background image, with an black box over it; filled with transparant text. So the black box is transparent where the text is.
See this example:
Is this possible (must be...)?
...
2
votes
1answer
120 views
Using jQueryUI Datepicker And Input Masking Together
First of all check live example . There is a mask for dates on text box. Also there is a jQueryUI datepicker. They are working very well but when i choose a date with datepicker, text box's mask is ...
2
votes
2answers
76 views
What is equivalent of VB6.0's MaskColor property in C#
The MaskColor property in VB 6.0 is used to remove the background color of an Image. How might I do the same in C#?
2
votes
1answer
355 views
Is it possible to clip/mask a div using html5 and canvas?
I have a photo gallery that uses images "cut off" at an odd angle but the cut-out needs to be transparent in order to see the background. I had been able to get it to work using alpha masks but there ...
2
votes
1answer
733 views
Get a Image Mask of the Differences Between Two Images Emgu CV
I was wondering how to take two different gray images and create a mask of the differences between the two. Any help would be much appreciated.
2
votes
3answers
329 views
Using String Masks in Perl
I have a program that allows a user to specify a mask such as MM-DD-YYYY, and compare it to a string. In the string, the MM will be assumed to be a month, DD will be the day of the month, and YYYY ...
2
votes
4answers
390 views
Java four bytes to binary 'bitmask'
I'm trying to take four bytes from a binary file and turn them into a bit mask that represents a zero for data and a 1 for metadata.
I'm assuming I need to convert them into an int by or'ing them ...
2
votes
3answers
165 views
masking in WPF template (opacitymask reversed)
I am currently redoing a groupBox's template.
I would like the header to have rounded corner on top and "inverted" rounded corner at the bottom:
I managed the above template quite easily by ...
2
votes
3answers
191 views
C# integer masking into byte array
I'm confused as to why this isn't working, can someone please provide some insight?
I have a function who is taking in an integer value, but would like to store the upper two bits of the hex value ...
2
votes
2answers
805 views
Iphone masking colors: Remove background color
I have a series of avatars; each has a hot pink background of RGB:255,0,255.
Rather than going through every avatar, and manually removing the pink background; is there a way to make Objective C ...
2
votes
2answers
114 views
Rewrite a URL that's already been redirected?
I'm running an Apache2 web server with a dynamic IP address. I bought exampledomain.net, and I use no-ip.com's domain-update service to redirect any visitors to my current ip address (endnote #1). For ...
2
votes
2answers
255 views
Will IP Masking effects SEO Results / Ranking?
When users entering domain www.example.com, it has to check for the country from the IP and should redirected to some other language specific domain eg: www.example.co.in. Will the search engine ...
2
votes
1answer
175 views
How can I call a masked function in C++?
Let's say I have this C++ code:
void exampleFunction () { // #1
cout << "The function I want to call." << endl;
}
class ExampleParent { // I have no control over this class
public:
...
2
votes
1answer
342 views
iPhone: Masking an UIImage via touches
before rolling up my sleeves and starting an own solution:
Is there already an approach for masking an image via touches?
Touches are marked yellow in my example:
If there is no existing ...
1
vote
1answer
26 views
URL masking via VHOST or htaccess
I would like to fake mask URL to another url..
Example:
I have domain www.domain.tld..
And I want to mask it to www.google.com
So, if someone type www.domain.tld/something, it will load URL ...
1
vote
1answer
77 views
Excluding Masked Areas From A “Paint Bucket” Fill On A UIImage
I'm building an iPhone application which requires some images to be built up in a very specific way. The problem is quite difficult-to-explain so below is a diagram of what I'm trying to achieve. ...
1
vote
2answers
169 views
Masking textbox to accept only alphabets asp.net
How do i mask a textbox to accept only alphabets.
using ajaxtool kit or regex or javascript (not jquery though).
Could i probably filter out numerics and special characters using ajaxtoolkit?
...
1
vote
1answer
55 views
Sourcing methods to an environment different than .GlobalEnv
Is it possible to source methods to an environment other than .GlobalEnv?
I'm slowly getting a bit frustrated over R's masking mechanism (I'll probably be back with an own question in this respect, ...
1
vote
4answers
198 views
Java: String to asterisk, masking password
I'm creating this simple login code for an ATM machine.
You enter username and password and you logs in, that works just great. Since I'm not connecting to a database or an external text file and I've ...
1
vote
1answer
554 views
(ExtJS 4.x) Mask not showing in IE 8
I have a wait massage that is being shown to cover the page until the call is done with database and it doesn't work in IE 8, though it works for FF, the code I am using is
panel.body.mask('Loading. ...
1
vote
2answers
350 views
Datagridview mask values in column
How can I "mask" the values of a datagridview in a windows forms application? In example, how can I limit the value in a column datagridviewtextboxcolumn so that is not bigger than a given number? ...
1
vote
2answers
292 views
Is it possible to URL mask a domain name with a different one using mod_rewrite?
Here is the scenario -
I have a website where customer's websites run under mine.
So as an example, my domain is www.mainsite.com and a customer's website would be www.customer1.com --- but when ...
1
vote
1answer
781 views
Prepopulating masked textbox fields using MVC / jQuery
Recently I have been going through a project in an attempt to sanitize several data inputs (most are primarily Dates (mm/dd/yyyy) or DateTimes (mm/dd/yyyy hh:mm:ss am/pm).
I am using the digitalBush ...
1
vote
1answer
214 views
Compare byte arrays with masking
I want to compare 2 byte arrays with masking. So I have data and dataTemplate:
byte[] data = new byte[] { 0x3b, 0xfe, 0x18, 0x00, 0x00, 0x80, 0x31, 0xfe,
0x45, 0x45, 0x73, ...
1
vote
1answer
245 views
How to mask out a view when filling an area?
could anyone tell me how to place a translucent black mask over the whole screen, but with the area of a particular UIView being excluded? I want to use this mask over a UITextField, which calls ...
1
vote
1answer
237 views
pasword masking in console window and recursive function call in java
the following java code is executed in the console window in DR.java IDE.
i have the following two problems please help me friends.
Is it possible to make password masking ?? i tried a lot by ...
1
vote
3answers
183 views
Bitmask in big endian
This isn't a question as much as it's a sanity check!
If you needed to read 4 bytes into Java as a bitmask in Big endian and those bytes were:
0x00, 0x01, 0xB6, 0x02.
Making that into an int would ...
1
vote
2answers
472 views
Frameset causes URL to not change when navigating through the pages. Is there a way to get around this?
We have a website and one of its pages contains a frameset (we need to get data from another website). The problem is, once you get to the page that contains the frameset, the URL no longer changes ...
1
vote
1answer
465 views
AS3 Inverted mask, MouseEvent.ROLL_OVER moves the mask
I'm trying to make my images look awesome in AS3. I want to create the effect of the "moving background". For instance, my image is 200 x 200 and my mask is 200 x 40. When I hover, I want the ...
1
vote
2answers
330 views
Mask Passwords with Logback?
We currently generically log all XML documents coming in and going out of our system, and some of them contain passwords in the clear. We would like to be able to configure the logback logger/appender ...
1
vote
3answers
2k views
input time mask using jquery
I am using meioMask – a jQuery mask plugin to put time mask in a textbox. Here is the JsFiddle. Its working good. But I also need to to put hh:mm in the textbox, to let user know what to enter in the ...
1
vote
1answer
394 views
URL masking in JavaScript
I currently have the following JavaScript function that will take current URL and concatenate it to another site URL to route it to the appropriate feedback group:
function sendFeedback() {
url = ...
1
vote
1answer
181 views
Quartz 2D Experts — Masking method crashes program after 6 or 7 consecutive calls
I'm looking for a Quartz 2D expert that might be able to see a flaw in the following code:
self.imageView.image = [self maskView:self.imageView withMask:[self createMaskForTool:self.toolView ...
1
vote
1answer
361 views
Multiplying RGBA with two CGImageRefs
I'd like to multiply r, g, b and a values of two CGImages, to use a single image as both a mask (in its alpha channel) and tint (in the rgb channels). I first tried simply:
...
1
vote
1answer
489 views
Masking an image with selectable text with SVG - possible?
One neat typographic effect often seen headlines in magazines etc, is to select a really bold font and put an image inside of the text. Here's a random example of the effect:
In web design, there is ...
1
vote
1answer
675 views
mask image via another image
Alright what I am trying to do is:
given an image where there is a circle within that image that is "blank". I want to take an existing image from user library and then mask it so that only a ...