The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
19 views

'tinting' your screen for dramatic effect

What I'm thinking of doing in one of my projects is whenever the user gets a wrong answer I want to tint the screen red for a quick second (kind of like getting hurt in most video games) but then ...
2
votes
3answers
71 views

CSS equivalent for Text Tint

I'm trying to export files from Adobe InDesign to basic HTML + CSS. A user can select some text and change the text colour. Using the InDesign SDK I can fetch the RGB values for that colour and in ...
0
votes
1answer
28 views

Tint Color of Appstore TopBar

I like to use the same tint color that apple uses for its iOS6 Appstore top bar. But I can't manage to find out the right color. I tried a lot of colors but none of them was right. Does anybody ...
0
votes
0answers
30 views

unable to select items on canvas in fabricjs

I am using fabricjs to add clipart/images to the canvas.Now i have a client requirement of adding the cliparts in a group.I did this and the group is properly rendered in canvas.... But now the ...
1
vote
1answer
80 views

Change colour of dark grey highlight when holding down custom UIButton?

I have a custom UIButton which is a cloud, transparent black and white .png file, with no down state, just one image. When tapping and holding the finger over it, it turns dark grey. I'm trying to ...
2
votes
0answers
78 views

is there any chances to get the statusbar tinted on iPad (iOS 6)?

iOS 6 provided statusbar tinted on iPhone, but I cant find it on iPad I tried to modify [SBApplication StatusBarStyle] and other [StatusBarStyle]'s value to "1" via FLEX (Cydia plugin), and after I ...
1
vote
2answers
50 views

Darkening an image with CSS (In any shape)

So I have seen quite a few ways to darken images with CSS, including ones with rounded corners, but my problem is different. Let's say I have an .png image that looks like a little dog (just go with ...
0
votes
1answer
97 views

Can I tint a htmltext img tag in AS3?

Can I tint an image from library included in an htmlText in AS3 (using flash cs5)? On the stage I'd use: var cTint:Color = new Color(); cTint.setTint(0xff00ff, .25); image.transform.colorTransform ...
0
votes
1answer
260 views

Change UITableView header tint color

I have implemented the following code in order to change the tint of the section headers in a tableView. I just want to change the color tint, not to apply a view from my own. The app, however, seems ...
0
votes
2answers
145 views

how to create a transparent UIBarButtonItem?

I have a UINavigationBar with a pattern on it. I've seen a lot of UI that implement transparent UIBarButtonItem, and I wonder how to make the same. Tint dosent do the trick unfortunately... please ...
1
vote
1answer
168 views

Set SpriteBatch color (for tinting) affects all drawing

I created a AnimatedSprite class, that draw a specific TextureRegion. Sometimes I need a tint color effect, so I set (this.color is a Color field of my AnimatedSprite): super.draw(batch, ...
0
votes
2answers
153 views

UISegmentedControl setTint for UISegments only works after clicking

Xcode, Obj-c, iOS 5.2 iOS 6.0 I have a UISegmentedControl which is being inserted into the bottom toolbar using something like this: -(void) makeSegmentedControl { self.SegControl = ...
0
votes
2answers
76 views

Cocos2D. How to tint a sprite back?

Let's say i've applied the following tinting to my sprite: CCTintTo *tint = [CCTintTo actionWithDuration:2 red:50 green:50 blue:50]; [self runAction:tint]; How do i tint it back? How to recover ...
1
vote
0answers
85 views

Android change screen tint

I want to create an app that tints the entire android screen a certain color. The tint or color overlay would be global. Similar to this. How would I even do this? Would it be a widget? Code samples ...
0
votes
1answer
161 views

Tinting Image in Java improvement

I looked for an easy way to tint an image in Java but I found nothing that suited my needs. I went to the following solution: First create a new Image that serves as a copy of the Image I want to ...
0
votes
1answer
154 views

Set UINavigationBar's background image

I have this piece of code: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if([[UINavigationBar class] ...
1
vote
1answer
176 views

iPad: How to change the tint color of a navigation bar item in a popover?

I am using a custom popoverBackgroundViewClass to tint the popover to dark gray. https://github.com/Scianski/KSCustomUIPopover popover.popoverBackgroundViewClass = [KSCustomPopoverBackgroundView ...
0
votes
0answers
110 views

Tinting The Image Used On Custom UIButton On Touch/Selection

I know that the interface builder buttons have the ability to have custom colors as the tint or hightlight. When I try to use a Custom UIButton instead with an image that I added to the Project the ...
2
votes
1answer
143 views

PHP: PNG tinitng (1 color)

Before I start, I just want to note that I am a PHP noob. What I want to do is tint a PNG image to one color. So all transparent pixels will remain transparent, and all non-transparent pixels will ...
2
votes
2answers
263 views

Qt4: tinting a QIcon

What is the easiest way to apply a color tint to a QIcon in Qt4/PyQt4? I have several monochrome QPixmaps which I'd like to re-color based on the properties of their associated objects.
1
vote
2answers
256 views

Dynamically tint PNG image

does anyone know a way to color a PNG image, and preserve the transparency? so for example if you had this image here: ...
2
votes
3answers
2k views

How can I tint a background image with CSS?

I have a background image set up through CSS. html { background-image: url('../img/cello.jpg'); background-attachment: fixed; background-size: 100%; } I plan on having a different background image ...
0
votes
0answers
51 views

UINavigationBar with custom Tint - how to make button look like “back” button [duplicate]

Possible Duplicate: How to make a UIBarButtonItem look like a UINavigationBarItem I inherited some code from other coder. It has code to make button on navigation bar, looking like "Back" ...
0
votes
2answers
312 views

Change tint color of the toolbar

I want to change the tint of the buttons in the toolbar. I've seen this question but I don't know how to access the toolbar object...
1
vote
1answer
377 views

Tint of UIBarButtonItem doesn't match color I set

The background color for my view in RGB format is R: 111/255 G: 209/255 B: 229/255 I tried setting the tint of the UIBarButtonItem using: CGFloat nRed=111.0/255.0; CGFloat nGreen=209.0/255.0; ...
0
votes
1answer
321 views

Why can't I change UIBarButtonSystemItemPageCurl item tint?

I am using iOS 5.1 with StoryBoards. I want to change the tint of the standard page curl button, but I don't seem to be able too. The button is on a View Controller and is a pushed View Controller of ...
0
votes
0answers
49 views

Odd screen tinting when touching sections of web app on iPad

I have this odd behavior happening when a user touches any part of our web application. The interface consists of an iframe that has two nested iframes. When any part of the iframe is touched, the ...
0
votes
1answer
869 views

Android view state_pressed Blue background

I have a lot of custom views and I have style for state_pressed. Basically its a rectangle with solid android:color="#DC2D5A8C" What I am trying to do is simulate the blue background color that ...
2
votes
1answer
344 views

UIBarButtonSystemItem PageCurl does not change color with the toolbar

I wanted to change the color of the navigation bar and tool bar, but the color of the page curl system icon UIBarButtonSystemItemPageCurl does not change with the tool bar tint color. If I use other ...
2
votes
0answers
291 views

Color tint and temperature

Though I have found a lot of topics on color tint and temperature, but till now I have not seen any definite solution, which is the reason I am creating this post..My apologies for that. I am ...
2
votes
1answer
328 views

Control tint color in UISegmentedControl

In most of my projects a UX designer will provide me a RGB color for an asset in iOS, but am having trouble providing what is needed for a tint color in a control. To explain, since the tint ends up ...
1
vote
1answer
726 views

Tint effect in Android

I need to apply tint effect on image in Android. But the tint effect will only have ORANGE COLOR tint. If anyone has done this type of effect, please help me. I have seen all the web links found by ...
1
vote
1answer
472 views

How to draw a BufferedImage with a color tint

I'm trying to draw a BufferedImage to my Canvas with a varying color tint, but can't find any real working examples. I don't want to generate a new tinted BufferedImage, but repeatedly draw a ...
1
vote
2answers
2k views

How do I change the tint color (background) of a UIActionSheet in iOS5?

I would like to change the tint color of my UIActionSheet for my iOS apps. Is there an easy answer or custom class which I can use to achieve this? I have found help on changing the colors of the ...
0
votes
1answer
272 views

Tint UIImage without redrawing

I'm looking for an ability change the color of a sphere around a Light source. Right now I do that by creating a CGImage out of a Color and masking it with a PNG. This works, but whenever I change the ...
3
votes
1answer
6k views

Change the navigation bar tint using Xcode

I have been looking on this site and on other how to set the navigation bar tint change, I have seen examples but is not quite what I need so any help will be appreciated. on my app delegate I have: ...
2
votes
1answer
293 views

Constrain color burn to the inside of a CGPath

I have a closed path defined as a CGPath (actually, CGMutablePath). I want to color burn a specific region of a UIImage defined by the path. I've been fiddling around with Core Graphics, but ...
5
votes
3answers
1k views

OpenGL ES: How to tint texture with color

I have texture with alpha. And I want to tint it with some color, so it will be colored depending on color alpha value, but overal opacity will be defined only by texture alpha. This is similar to ...
12
votes
2answers
3k views

How can I tint a UIImage with gradient?

I searched everywhere but didn't find the solution. I have image 1. How can I programatically tint them with gradient to get images 2 and 3? Here are those images: Tints that I applied to them via ...
2
votes
1answer
1k views

How to set the color of UISearch Bar

Can anyone advise me on how I can set the color of the UISearchbar such that it follows the color of that search bar used in the address book? It has a light gray color and the cancel button is of a ...
6
votes
1answer
1k views

How to tint a Bitmap to a solid color

How would one go about tinting a Bitmap to a solid color, effectively replacing all pixels that have an alpha > 0 to a given RGB value? In addition how to do the same thing, but keeping the alpha for ...
0
votes
2answers
335 views

tint images without imagemagick

I have an upload form for images that once uploaded are then displayed automatically and randomly on a website. I would like to apply a colour tint to the images before they are saved, at the very ...
0
votes
2answers
2k views

Color of UIToolbar not changing

I have created a UIToolbar. I am trying to give it black color using: toolbar.barStyle = UIBarStyleBlackOpaque; or toolbar's background property. But its color does not change in either case. ...
1
vote
2answers
472 views

Color attenuation/tint in Direct2D

Has anyone figured out how to change the color of bitmaps when rendering with Direct2D? With Direct3D it's a simple matter of specifying different vertex colors or, when using the sprite batch, ...
2
votes
2answers
1k views

UINavigationBar change Tint color with animation

Is it possible to change the tint with animation for a smoother effect? This doesn't work for me: [UIView beginAnimations:nil context:nil]; [self.navigationController.navigationBar ...
7
votes
1answer
1k views

How can I reproduce Apple's iOS Tint-Color Formula for Toolbar/Button gradients?

We're looking to reproduce the way Apple applies a tint-color to their controls. We're developing a web-based product and thus have to reproduce the formula/application of the color ourselves. Our ...
0
votes
1answer
148 views

Loosing tint in iPad app after splitter popup activated

I have applied a brown tint to the app. When I select the popup then switch back to landscape view, the app goes back to the default tint. Is there a way to stop that. here's a few screen shots in ...
5
votes
4answers
11k views

jQuery: there is a way to apply colour (tint) to an image?

there is a way to colour (apply tint) an image using jQ or some plugs? thank you
1
vote
1answer
1k views

set tint for uiview background color

how can i set tint color as a uiview background color? thanks.
23
votes
6answers
8k views

How to tint a transparent PNG image in iPhone?

I know it's possible to tint a rectangular image by drawing a CGContextFillRect over it and setting the blend mode. However, I can't figure out how to do a tint on a transparent image such as an icon. ...

1 2