Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
531 views

Is there a conventional method for inverting NSColor values?

I'm looking for a way to invert arbitrary NSColor values at runtime, and there doesn't appear to be any built-in method to do so. I will be using a category to extend NSColor as follows: NSColor * ...
5
votes
3answers
353 views

How to invert colors of an image in pygame?

I have a pygame Surface and would like to invert the colors. Is there any way quicker & more pythonic than this? It's rather slow. I'm aware that subtracting the value from 255 isn't the only ...
5
votes
4answers
5k views

How do I invert a colour / color? (C# .net)

I know that this won't directly invert a colour, it will just 'oppose' it. I was wondering if anyone knew a simple way (a few lines of code) to invert a colour from any given colour? At the moment I ...
4
votes
1answer
391 views

iPad programming, any way to invert color programmatically?

You know how the iPad can invert colors? For the app I'm working on we wanted to have a button that would invert the colors for one of the views the same way. Does the sdk have any kind of support ...
4
votes
1answer
2k views

Flipping/Inverting/Mirroring text using css only

I did some googling and here's my answer <!--[if IE]> <style> .mirror { filter: progid:DXImageTransform.Microsoft.BasicImage(mirror=1); } </style> <![endif]--> ...
4
votes
3answers
916 views

How can I invert a regular expression in JavaScript?

I have a string A and want to test if another string B is not part of it. This is a very simple regex whose result can be inverted afterwards. I could do: /foobar/.test('foobar@bar.de') and ...
3
votes
4answers
255 views

Java invert map

I need create inverse map - select unique values and for them find keys. Seems that only way is to iterate all key/value pairs, because entrySet returns set of so value not unique? Thanks.
3
votes
2answers
782 views

opengl invert framebuffer pixels

I was wondering was the best way to invert the color pixels in the frame buffer is. I know it's possible to do with glReadPixels() and glDrawPixels() but the performance hit of those calls is pretty ...
2
votes
1answer
106 views

jquery ui slider — how to invert the range selection

I have a somewhat strange request to allow a user to select a range on a slider but allow them to invert the range selection on the slider. For example, if they have this selection on the slider: ...
2
votes
5answers
246 views

Cannot create a program which will invert string

I am using Linux. I am trying to write a program in c that will print a string backward. Here is my code: #include <stdio.h> #include <string.h> #include <stdlib.h> int main (){ ...
1
vote
1answer
44 views

How Do I Invert The Y Axis Motion Of This?

I'm making a little game for iPhone that involves whistling. The phone hears the frequency of your whistle, and sets the position of a sprite on the screen accordingly. Here is the code: if frequency ...
1
vote
0answers
313 views

Invert or Flip Text in RDLC report

Okay, I've learned a bit more and have rephrased my question. I've got a need to flip or invert text 180 degrees (so it appears upside-down) on a RDLC report. I have some custom VB code that takes the ...
1
vote
3answers
922 views

Most efficient matrix inversion in MATLAB

When computing the inverse for some square matrix A in MATLAB, using Ai = inv(A) % should be the same as: Ai = A^-1 MATLAB usually notifies me that this is not the most efficient way of inverting. ...
1
vote
6answers
605 views

Regex: Extracting readable (non-code) text and URLs from HTML documents

I am creating an application that will take a URL as input, retrieve the page's html content off the web and extract everything that isn't contained in a tag. In other words, the textual content of ...
1
vote
1answer
1k views

Draw standard NSImage inverted (white instead of black)

I'm trying to draw a standard NSImage in white instead of black. The following works fine for drawing the image in black in the current NSGraphicsContext: NSImage* image = [NSImage ...
1
vote
4answers
204 views

Invert the Selection in JTable

On clicking a button, I want the selected rows to be inverted (non-selected rows should be selected and selected rows should be non-selected). Is there a build-in method in JTable to do it?
1
vote
2answers
349 views

Automatically convert CSS file to be used on dark backgrounds

I have about 200 CSS files like this: /** * GeSHi Dynamically Generated Stylesheet * -------------------------------------- * Dynamically generated stylesheet for bnf * CSS class: , CSS id: * ...
0
votes
1answer
27 views

Inverting text data in MySQL

I would like to invert the text of certain records depending on if ValueA is greater than ValueB. If ValueA is indeed greater than ValueB, then I want to invert the contents of the field Content. The ...
0
votes
4answers
57 views

Javascript: inverting a boolean does not work

i am trying to invert a boolean value (toggle); var current_state=$.cookie('state'); if(current_state==null) { current_state=false; } console.log(current_state); current_state=(!current_state); ...
0
votes
1answer
66 views

Optimization of color inversion - Python Tkinter library

I attempted today to create a Python code to invert the colors of a .gif image using the Tkinter library. The code works and does exactly what I expected, but it takes about 50 seconds to run on a ...
0
votes
0answers
178 views

Android Invert a Bitmap at Runtime

I am trying to invert a bitmap by using a Paint ColorFilter I used this link as a reference: http://www.mail-archive.com/android-developers@googlegroups.com/msg47520.html but it has absolutely no ...
0
votes
1answer
168 views

How to control the contrast of text?

How do you change the color contrast of text when the background changes? for example If I was to have a black background, black text would not be visible.
0
votes
1answer
307 views

Invert Image Color Onmouseover

I want to invert the colors of an image when the mouse rolls over the image using Javascript. I do not want to use Image Rollover as it will increase the load time. I am building my first ...
0
votes
0answers
132 views

Invert Data - Maintain Data Tips - Flex Charting

I am trying to chart baseball player era and whip, where lower is better. Is there a way I can customize the axis to chart the inverse?
0
votes
2answers
322 views

Jasper / DynamicJasper: How to invert Column Headers

I have a Jasper report with the following output format: Item | Price | Quantity ---------------------------- 1 100 5 2 150 8 3 200 ...
0
votes
3answers
198 views

Why is nlogn so hard to invert?

Lets say I have a function that is nlogn in space requirements, I want to work out the maximum size of input for that function for a given available space. i.e. I want to find n where nlogn=c. I ...
0
votes
3answers
494 views

Inverted-colors text on top of an OpenGL scene

I have a font texture which I use in order to draw text on top of my OpenGL scene. The problem is that the scene's colors vary so much that any solid color I use is hard to read. Is it possible to ...
0
votes
2answers
412 views

Inverting a diff or patch || CVS diff

In CVS, my working copy (WC) is on a certain branch (which we'll call "foo"). There have been other changes checked into foo by another dev. I want to do a diff between my WC and the upstream state ...
0
votes
2answers
862 views

How to compute ifft from fft?

I've done a fft to get fundamental frequency in real time and to implement high and low pass filters. Now I want to be able to record to a .wav file after I apply a filter. First I'll have to invert ...
0
votes
3answers
325 views

Invert function: base 38 conversion

Can you tell me how the invert function for the following PHP function is? <?php function id2secure($old_number) { $alphabet_en = '1357902468acegikmoqsuwybdfhjlnprtvxz-_'; $new_number = ''; ...