Photoshop :: Function Within 3D To Color The Shading

Nov 27, 2013

When I am using repousse on type the shading on 3d is true to the color of type but if I am using a layer mask or path of a shape its just grey scale shading. Is there a function within the 3d to color the shading.

View 1 Replies


ADVERTISEMENT

Photoshop :: Change Color But Keep Texture And Shading

Nov 23, 2013

I have been trying to do this for a while but getting nowhere fast, I need to change the color of a suit in an image, at the moment the color is a shade of blue but i want to change it to a mustard color.

I have tried using the Hue Saturation color displacement but no joy. I have attached the image that needs changing.

View 9 Replies View Related

GIMP :: How To Color In A Sketch With Shading

Feb 26, 2012

for example, you have a sketch that you drew yourself that has shading done around the face, but you want to color it in with a flash tone over the shading.

View 2 Replies View Related

GIMP :: How To Color In A Sketch Done With Shading

Feb 26, 2012

I've seen videos of people doing this with photoshop, and I was wondering if it was possible with GIMP.

Say for example, you have a sketch that you drew yourself that has shading done around the face, but you want to color it in with a flash tone over the shading.

View 1 Replies View Related

Illustrator :: Possible To Change Brightness Or Shading Inside One Global Color

Jan 8, 2014

A few years ago I learned in school the usefullness of global color. I used it today and it was very usefull to quickly change the color of a lot of different objects at the same time.
 
HOWEVER; I remember they also tought me that it was also possible to change the brightness or shading or something inside one global color.
 
for example lets say I picked a red as a global color, and I have 10 objects all in that red. Then it should be possible to let 5 of those objects have a lighter version of that red color.

Then afterwards when I change my global color to green, all the objects change to green, and those 5 objects now have a lighter green color.
 
Am i remembering this correctly, and if so; how do I apply this? Because I cannot figure it out...

View 3 Replies View Related

Photoshop :: Getting New Color Range Selection Function To Work On Retina MacBook Pro

Jan 2, 2013

Is there a trick to getting the new Color Range selection function to work on a retina Mac Book Pro? I am quite familiar with the color range selection in the previous version of Photoshop, and used it regularly. I've decided to try as simply as possible by using a flat image (no layers), and trying to select colors. I've increased the contrast in the image to make dark and lights much easier to pull out.

I've explored setting the sample size to point-sample up to 3x3, and 5x5. I've also set the resolution of my display to 2880 x 1800 (to reduce the possibility of anti-aliasing problems). It will not make any selection though, using the eye-dropper sample. Using other options will work, such as Highlights, Shadows, Skin Tones, etc., but it won't do anything with Sampled Colors.

View 4 Replies View Related

Photoshop :: "Replace Color" Function And Other Masks

Dec 29, 2008

I am trying to change the palette of an indexed image without losing the color table indexes. I want to change a bunch of colors at once.

Image->Adjustments->Replace Color (while still indexed) is exactly what I want. And it works, mostly.

The problem is I am trying to select a mask of multiple colors with 0 "fuzziness" so I can adjust their hue/saturation etc.

But, when I go to hold SHIFT to select multiple colors, I get all these other colors that I didn't want included in my mask, despite that fuzziness is set to 0. I tried selecting all colours and subtracting colours and this also fails.

For example, I select ALL colours in the mask by holding shift and picking every colour in the image (there are 24 colours). Then after ALT->clicking 2 colours, it actually deselects ALL 24 colours. I want it to only deselect the exact 2 that I picked.

Magic wand works in this way with 0 tolerance. Why doesn't the mask picker?

I can't convert to RGB->back to indexed because then the color table not match up.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: No Function Definition With Distance Function

Oct 25, 2013

This seems absolutly silly.

(setq p1 (getpoint))
(setq p2 (getpoint))

(setq Dist (distance p1 p2))

Why does this not work?

I'm trying to build a command to replace AutoCAD's "DI" command, to give distance and delta x, y, and z values in decimal and imperial, and keep the angles in XY plane and out of XY plane.

View 9 Replies View Related

Photoshop :: Shading The Map

Nov 16, 2013

To show our customers where we serve I would like to highlight everything below this black line... I have done some basic highlighting but it just doesn't looks professional. just shade everything below this black line and make it look professional?

I need it done on this map .

View 4 Replies View Related

Photoshop :: Which Tools Are Best For Shading

Aug 29, 2013

Which tools are best for shading?

View 1 Replies View Related

Photoshop :: Get Rid Of Shading Around Images

Aug 13, 2005

i upload an image and i change the color of the image there is always a shaded line around it. What can i do to get rid of the shaded line?

View 1 Replies View Related

Photoshop :: Cell Shading

Dec 9, 2005

my frind did a pic with another program, he calls it call shading here is the pic

he replaces alot of pics with pics of us, how did he do it, he says its alot easier with photoshop.

View 9 Replies View Related

Photoshop :: Edges, Shading

Nov 13, 2006

I am trying to learn is how to give the images of my artwork (paintings) an edge, as if it is a 3d canvas, and a shading to the edges, or just a shading. Also, I would like the corners a little rounded, but not a lot.

I have other needs, but I will have to learn to use the program for these, especially editing the colors, since an accurate photo of an original painting is seldom acheived, especially in terms of colors. If there is a very simple guide you can recommend I'll be happy to try it.

how to use the program for the basic purposes I mentioned (edges, corners, shading)

View 2 Replies View Related

Photoshop :: Image Shading

Dec 3, 2006

I've been working on a website and at the moment am uploading some products. The problem is with the images. They look pretty bland and dont fit in with the rest of the site. I've tried many different types of shadows and Im still not satisfied.

View 6 Replies View Related

AutoCAD Inventor :: Passing A Function Name To Another Function

Nov 13, 2012

I'm trying to be able to have a function run another function with the secondary function being passed as an argument to the first. I'm trying to create a recursive function and the recursive part works great. I just need to be able to have the recursive function run other functions to actually do stuff.

Here is something I found that should do what I need, mainly run a function from a function name in a variable.
 
Sub test() Dim ftnName As String Dim argument As String Dim result As String ftnName = "myFunction" argument = "cat" result = Application.Run(ftnName, argument) MsgBox resultEnd SubFunction myFunction(inString As String) As String myFunction = inString & " has " & Len(inString) & " letters."End Function

 However I get the error "object required" on the "result = Application.Run(ftnName, argument)" line. So I'm guessing the Inventor VBA doesn't like this method of doing this. I'm just hoping there is a way to do this or this function will be useless or reduced to hardcoding functions which still defeats the purpose.

View 2 Replies View Related

Photoshop :: How To Turn Off Shading In 3D Mode

Jan 11, 2013

I want to wrap a logo around a baseball. All I need is the logo to be rendered in 3D, and I will use the Multiply blending mode to use the shading that's already on the baseball. How do I turn off all shading effects in the 3D interface so no additional shading is applied to the sphere the logo is being wrapped around?

View 3 Replies View Related

Photoshop :: Imitating Pencil Shading

Jan 4, 2009

It's been awhile since I've posted. Still been doing graphics work, but not had enough time to really push myself and grow in a way that required a community. I posted this on another forum with no response, I'm hoping perhaps I'll get a bit more out of the place where I started out.

View 8 Replies View Related

Photoshop :: Gradient Shading/Colour

Oct 15, 2008

ill try and keep my question as simple as possible.

i'm trying to use the gradient tool. im adding gradients to sold colour shape jpg's. for instance i have a jpeg that is a green square.

i want to use the Graditent tool to give a gradient effect to my jpeg, however when i apply a gradient it is always grayscale, no matter what colour the image! can this be changed to colour? if so how?

in other words, is it possible to make my green square have a green gradient effect?

View 1 Replies View Related

Photoshop :: Shading And Digitizing Sketches ...

Jul 14, 2009

How to paint digitally in Photoshop and how to converted drawings digitally and paint them ?b) Tutorial or even a book but a tutorial would be prefered, on coloring and adding shadows to your drawings.

View 8 Replies View Related

Photoshop :: Cloud Shading? Or Clouds In General.

Feb 10, 2009

I'm completely new to Photoshop (only started yesterday), but I've been playing with it and it's fun. My problem is that I've tried creating a picture, but the clouds I made don't exactly look much like clouds.

What I did to make them was to render clouds, then adjust levels to create cloud shapes, and transformed perspective. Then I set it to 25% opacity against a red/orange background. However, as you can see, there are no shadows on the clouds, and it looks kind of bad in general.

My question is: how would I go about shading the clouds? And if the clouds are extremely bad, how would I go about making more believable ones?

Also, is there anything else about my picture that I can/should improve?

View 2 Replies View Related

Photoshop :: Turning A Photo Into Smooth Lineart For Cell Shading

Oct 23, 2007

trying to get a good smooth lineart output from Photoshop. As a picture says a thousand words let me explain.

Original Image

Now befunky is an online image app that creates cell shaded images for you, but at low res. It outputs a line art sketch like this.

Befunky Output

The closest I can get in Photoshop using a combination of Smart Blur and Gaussian Blur is this.

Current

As you can see I'm not quite getting the smooth lines that Befunky seems to draw.

View 6 Replies View Related

3ds Max :: Hardware Shading Not Available?

Mar 15, 2011

the hardware shading options are all greyed and I can not activate these options. in openGL or DX9 (dx10 isn't working so fine as it seems). My computer is sse3 enabled. I do not understand.

View 1 Replies View Related

Photoshop :: Removing Background Shadow On Transparent PNG Image Without Losing Shading Object?

Oct 8, 2013

I have a pillow bevel applied to a paint splatter brush image, and I'm having trouble with the shadows. I want to save this splatter as a transparent PNG. The problem is that a drop shadow effect is showing up when I save it this way. I think it's a "shading" setting rather than a true drop shadow, as there is no drop shadow set in the layer styles.

The shadow does not appear when a white background is applied. It only shows when the background is transparent. I've tried reducing the shading opacity in the bevel dialogue, and this does get rid of the drop shadow....the problem is that it also removes the shading from the paint splatter, making the image look flat instead of raised.

View 3 Replies View Related

AutoCAD Map 3D :: Shading Styled Object

Jul 25, 2012

I used civil 3d and autocad map 2010 to connect to a soils data .shp file provided by my state. Then i created a style using filters and rules to identify the various soil symbols provided in the data file. This resulted in a multicolored map shading the various soil types. The shaded polygons and areas list as map bulk object and they do not obey any plot style table or color table. When I plot the map Its too bold and I want to screen all the colors back about 75% so they will not over run my site entities. How I can get those screened back without saving the layer out to a different file and making them autocad entities?

View 5 Replies View Related

Xara :: How To Do Shading Effect On Front Of The Box

Jun 21, 2011

I ran across a thread a while back on doing a 3D box, that I believe Rik did. Shown is the example box. How to do the "shading" effect on the front of the box? Is just a overlapping of different shapes with different transparencies? I played around with the transparency tool, but didn't get the same effect.

I am new to this and get over whelmed by all of the cool effects you guys do. Is there a "central" location that might show samples of looks, and a how to? Also the 3D box thread link, can't seem to find again.

View 9 Replies View Related

Maya Modeling :: Shading And Polygons

Nov 30, 2011

I'm having trouble with shading objects I imported from SolidWorks using SimLab's plug-in. My problem is two-fold:

First, the polygons appear to have bizarre twists and bends in them, but there are no corresponding edges to create these deformations. Also, Maya thinks all the faces are planar. I tried cleaning up the objects and it yielded no results. These weird twists appear in both the work space and when rendered. I have tried deleting overlapping edges, but it didn't work.

Second, when I try to apply a bump map to my objects, they don't work. I tried using a noise and a fractal bump map and neither appear on the rendered image. However, the Brownian bump map works. I have tried creating other objects in the scene and the noise and fractal bump maps work just fine on those, just not on my imported geometry. I figured out a brute-force method to make the bump maps work - I delete a polygon and use the append tool to create a new polygon - but I have over 110,000 polygons on this thing.

I'm working on an 8-core MacPro running Windows 7 64bit with 32 GB RAM and two GeForce 9500GT video cards.

View 1 Replies View Related

3ds Max :: Flat Shading In Nitrous Viewport?

May 9, 2012

I can see flat shading with direct 3d, but not on nitrous. it's unavailable on nitrous? it's a shame because flat is very good to see hue variations on textures and stuff like that.

View 2 Replies View Related

Paint.NET :: How To Make Shading Realistic

May 17, 2011

I've just finished drawing my first ever drawing on Paint.net, It's of a a horse from scratch, but know i'm having trouble with shading, i need tips on how to make the shading realistic, addin darker and light colors, i've tried a lot to different ways, but they all look extremely messy and horrible .

View 5 Replies View Related

Illustrator :: Mesh Transparency For Shading

May 9, 2013

Using: Illustrator CS2 on Win XP Pro sp3
Experience - minimal (I come from using Xara and Inkscape).

My method of doing this type of art is mostly in Xara. I would creat block color shapes with decals and sticker, etc. and then use transparency gradients to create highlights and shadows. Here I was testing / getting use to the mesh tool and shaped the form of the car with color - rather then trasnparent highlights and shadows (top). But I now have to add stickers and decals to this car and tried to apply a clone of the hood mesh over the red stripes and it created a strang clipping error. You can see in the bottom screen cap that the sides and lower part of the red stripes disappeared, while the top remained untouched. Will I be able to use the mesh tool to create transparent highlights and shadows over the top of blocked coloe and the stickers, or will I have to manually match the shading on each sticker?

View 12 Replies View Related

Illustrator :: 3D Shading And Control Points

Nov 18, 2012

In the screen grab here, you can see that "errors" in gradient smoothness coincide with control points..or maybe between certain control points....is there a way to prevent this error from happening?

View 7 Replies View Related

InDesign :: Print Out Form That Has 5% Shading?

Apr 3, 2014

How do I print out a form that has 5% shading. I shows on the computer screen but prints solid black

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved