AutoCAD Inventor :: Resolution Of Image Inserted Into Sketch
Feb 28, 2003When I insert a image into a sketch what resolution does Inventor use?
View 4 RepliesWhen I insert a image into a sketch what resolution does Inventor use?
View 4 RepliesI have one Inventor Pro 2012 SP1 user who is trying to insert a bmp image into a sketch so he can create a decal and the image appears blank and gray. See the attached screen capture. We converted the bmp to a jpg and we get the same result. When I insert the bmp into a sketch on my workstation and it views correctly. I've logged into the same workstation as the user who is having the problem and the image also views correctly. I tried to change the file associaiton from Microsoft Picture View to Paint and I get the same result.
Here are his workstation specs:
Dell Precision T5400 - Xeon Quad Core - 2.93 GHz
Windows XP SP2 - x32
4 GB RAM
Nvidia Quadro FX 570
I made an assembly, placed a part and a sketch and constrained it, the first assembly file.
I want to turn it over, like in the second assembly.
The matemate and mateflush options in the constrain dialog box yield the same result, unlike in the tutorial:
[URL]
Is there any option to change the resolution of an inserted image (jpg, bmp, png etc.) in revit interface? See the attachments.
View 4 Replies View RelatedDo you know how to constrain 2d cad sketch to match existing 3D model. see screenshot. Is it doable?
View 6 Replies View RelatedI have a drawing on which I am going to need to show some photos of the assembly in its installed condition. When I attempt to insert an image, I get very low image quality that is giving me flashbacks to mid-90's video games. I do not get any sort of errors, missing images, file names displayed instead, etc. The image appears, but simply looks terrible, both on the screen and if printed or converted to PDF.
I have tried inserting the image as JPEG, PNG, and BMP, all with identical results. It is not unique to these images, and in fact occurs even if I try inserting images that Inventor created in the first place. Searching on these forums indicates that changing file associations for BMP files to Paint may be the answer, but most of these posts are rather old.
Since my IT department has me locked out of changing these associations for myself, I'd like some confirmation that this is still the likely cause before I go through the red tape of an IT service request.
Inventor 2013
Windows 7 64 Bit
When I add an image to my sketch the main body then appears "of the ground" as you van see from the attached screen shot. The shadow and reflection is distant. The minute I remove the instead image the object and the shadow touch again as it should be.
View 1 Replies View RelatedHow to become able to fully constrain a sketch with an image in it? Always stalls at 1 dimension required. Try a sketch with only an imported image.
View 2 Replies View RelatedI'm wanting to emboss a logo onto a part. Is it possible to project the logo outline? Or is there a better way of getting the logo into inventor? The logo file is a .jpg file.
HP Z400 Workstation
Intel Xeon @ 3.33GHz
12.0 GB RAM
Windows 7 64-bit
Inventor Pro 2014
I am attempting to insert an image into a sketch to be used as a decal, but it appears as a blank gray box. I created this image in Photoshop CS5 on my Mac Mountain Lion partition. I am running Inventor 2012 on my Windows 7 64-bit partition.
I appear to only have a problem with that specific image. All other images on my harddrive insert correctly. I have tried multiple file types (.jpg, .png, .gif, etc), but nothing has worked. URL.....It may be necessary to note that the image is white text with a transparent background.
I have a basic problem but I can't seem to be able to get around it. I added an image to a sketch successfully but it cam with a yellow line around it (see attached) and I can't remove it. In the sketch properties I was able to change it's color to black to make less visible but it's still there.
Any clue as to how I can make it disappear ?
What is the proper syntax for removing a bmp file inserted into a drawing border defintiion? I am using VB.net.
I got all the way into editing the sketch of my border defintion...
I know the name of the sketch image I want to delete it's something like "C:Temp12345678.bmp"
So I wanted to use the name to get the image file and set it to a variable. Then run the .Delete() command on that. But it's not working.
This is what I have, where oCSTicBorderDef is equal to the border defintiion of the active document..
Dim oSketch As DrawingSketch
oCSTicBorderDef.Edit(oSketch)
Dim strImageDirectory AsString
[Code].....
I am using a WMS in Autodesk 3D Map 2012 to display an Arial image in the Model area. As I zoom in, the Arial image changes showing things in more detail.
Is there a way to crop the image inside a specific boundary? Keep in mind that the image is basically a WMS, not a raster image.
P.S. If i try to print the area of the WMS Arial image that I am interested in (in order to avoid cropping) the result is a grey area.
I've created a shared sketch and have used it with various features. Sometime those features are suppressed. The model works fine but the shared sketch generates a sketch doctor error because the feature that created it has been suppressed. Is there anyway to make the sketch suppressed so it doesn't trigger a sketch doctor error? Inventor 2013
View 2 Replies View RelatedI realize the nature of my question maybe asking the impossible, but I have a low res image I downloaded from the internet, placed in an InDesign page, blew it up and printed it out. I was going for the distressed look that it has, it looks ok when I print it out considering it's low res and I blew it up fairly large. However, it's a little too pixelated to look professional when printed. Are they any tricks or things I can do to make it look higher res for print. I've attached the image as well as a screenshot of the InDesign file so you can see it in context.
View 4 Replies View RelatedHow do I duplicate the 2D line work from a part level sketch into a drawing level (overlay) sketch?
I started a simple 2D piping system diagram sketch by opening a new part file and using a sketch to stick draw the system schematic including some annotations. Then I opened a new drawing file and made a base view of the part file to bring a view of the original sketch into the drawing.
I realize now that it would have been much easier to have created the schematic directly in a 2D sketch at the drawing level, which would have made editing the annotations much easier at the drawing level, and there is really no need for the part file to exist. I have no intention of creating a 3D model or "real" part in the .ipt file, was just using it as a jumping off point to sketch.
I was thinking that I could correct my error in judgment by just copying the sketch and pasting it into a new sketch on the drawing, but it doesn't want to work that way. I have tried copying both the whole sketch at the browser level, and the entire sketch contents (all of the lines and annotations) from the opened part sketch, but when I attempt to paste either of those into the drawing, paste does not seem to be an option. I'd rather not have to draw the whole thing again, as in typical fashion, my once simple sketch has grown in proportion and complexity from its simple beginning.
I was trying to query some sketch points data from a profile Path using code as below. However the program stopped without telling the reason.
Code below:
i = 0;
foreach (ProfileEntity oSourceProfileEntity in oProfilePath) { switch (oProfilePath[i].SketchEntity.Type) { case ObjectTypeEnum.kSketchArcObject: { SketchArc srcSkArc = default(SketchArc); srcSkArc = (SketchArc) oSourceProfileEntity.SketchEntity; // error points[i] = srcSkArc.StartSketchPoint.Geometry; break; } default: { SketchLine srcSkLine = default(SketchLine); srcSkLine =(SketchLine) oProfilePath[i].SketchEntity; // error points[i] = srcSkLine.StartSketchPoint.Geometry; break; } } i++; }
First we imported an ".igs" file to inventor, which produced "wires". Then by promoting the wires it produced a 3-d sketch.
The model is in one plane and 2-D, and we are trying to use Ansys 2-D analysis, but in-order to do so it needs to be in a 2-D sketch.
The model is too large to be redrawn on a 2-D plane, how to convert it to a 2-D sketch
want to change sketch 2013 into the sketch of 2010
View 1 Replies View RelatedSome times we have to insert a Tiff file into a drawing and sketch over the top of the image. Occasionally when I go to print the file all I get is a blank rectangle where the image should be. Now the image does show in the print preview and it will print out normally sometimes.
View 1 Replies View RelatedI am a Photoshop newbie and I have a series of graphics (all 72dpi from a website) that I would like to print in 300dpi. Is it possible to take a 72dpi .jpeg or .gif file and easily convert it to a higher resolution printable graphic? If Photoshop can't do it, is there any type of program that can?
View 1 Replies View RelatedWhen I edit certain sketched some other sketches disappear. see attached.
This is causing modelling to slow down as I can not project lines from the sketch that has disappeared.
After I create a adaptive part from projected sketch. How to modify the sketch? Please see the part attached.
View 6 Replies View Relatedwhat is the difference between a sketch and a planar sketch?
View 2 Replies View RelatedWas really wanting to get the first image at the end of a spotlight inserted in the second image of the city off in the distance. Kind of like how the batman symbol is in the spotlight. The symbol is my churches logo and was wanting to use it for our Instagram.
Attachment 36457
Attachment 36458
How can i stretch an inserted image as ole obj with different dimension of x & y.
i tried stretching it but its width and length is the same, can't properly put it in a specified area in my working space..
I'm having trouble with constaints, I'd like to constrain my sketch to a point in another sketch on a different plane. Is this posible in Inventor? If so how? If Inventor works differently how would you get a points in one sketch to be linked to points another?
View 2 Replies View RelatedI'm trying to make this assembly flexible in that the bar will flex so the "s-clip" can hold the 2 handles together. I read some of the forums about the scissors assembly in the autodesk folders and I can see it working in that assembly btu can't figure out how to make it apply to mine. It is basically one of those camping grills that makes hot sandwiches or pies.
View 6 Replies View RelatedIf I insert a part with my own work planes in an assembly, I can programatically get the first 3 standard workplanes and also the non standard workplanes.
BUT if I make the part a table based iPart, I cannot find the extra non standard workplanes in the WorkPlanes of the part component definition, just the first standard three (XY YZ XZ).
(I've tried this in C++ COM and in VBA).
This is noce Made sub assembly everything is good to go. Put in main assembly and flip..
Yeah lets not fixs bugs...
Sub Assembly
Insert in Main Assembly
Nice.. And no i have not constrained it to the main just put it in...
how could I get the name of the last inserted part or assembly and select it?
View 4 Replies View Related