Questions tagged [blend-mode]
21 questions
0
votes
0 answers
Banding on object with Blend Mode: Color Dodge but not on Gradient Background
I've got a piece of artwork with a gradient background with no banding. On top of the background are a moon and stars I've I've colored yellow and used "color dodge" to blend over the background. For some reason, the moon has a banding/pixellation…

Cristiana
- 29
- 6
0
votes
0 answers
Flutter web - Alternative to canvas BlendMode
I have an app in Flutter who use blend mode but it's very unstable on the web version even when I build with the command flutter build web --release --dart-define=FLUTTER_WEB_USE_SKIA=true, when we open the web page on mobile, it crashs.
On my page…

Tryliom
- 895
- 1
- 12
- 37
0
votes
1 answer
Cannot assign value of type ''[UIImage]'? to type 'UIImage' (swif3)
I am trying to save 2 uiimages together then put the combined image and have it equal a image view named finalImage. However I am getting the error message that I have assign the title my question. Just looking to put the combined uiimage in a image…
user8105388
0
votes
2 answers
Expanding circle cutout transition effect in Spritekit
I am trying to get a transition effect similar to that in super mario run game by Nintendo in sprite kit
I just want a circle cutout to expand revealing the next scene or just revealing the current scene. This is not available as one of the…

plawres
- 313
- 4
- 19
-2
votes
1 answer
Why is CIFilter.differenceBlendMode behave differently from View's blendMode property?
struct ContentView: View {
var processed: CIImage {
let filter = CIFilter.differenceBlendMode()
filter.inputImage = UIImage(resource: .image).cgImage.map({CIImage(cgImage: $0)})
filter.backgroundImage =…

Kyle Fang
- 1,139
- 6
- 14
-3
votes
1 answer
Type of expression is ambiguous without more context error message when I try to blend two images
I'm trying to blend two same size images using code below but
"filteredImage.image?.draw(in: areaSize, blendMode: .normal, alpha: opa)" this code will show error message says "Type of expression is ambiguous without more context".. What is wrong?
…

JessJ
- 57
- 9