AutoCAD Civil 3D :: Inserting TIFFs With World File

Jul 8, 2013

I am trying to insert a tif that has a world file. I have AutoCAD Civil 3D 2013.  I changed my workplace to Planning and Analysis. I clicked on the Image ican. I found the tif file I wanted (the tfw is in the same directory), I clicked open. It does not give me the option to select the tfw from the correlation source dropdown. 

View 8 Replies


ADVERTISEMENT

AutoCAD 2013 :: R13 Xrefs Not Inserting To World UCS?

Sep 17, 2013

I have 4 plans of the a building in separate files, all set to world ucs.  I xref in ground floor to the first floor, then move the first floorr so it aligns. I complete the same process for plant room and roof. Having saved all the files I then xref back the first floor into the ground floor using the insertion point as 0,0,0 but the plans do not align???!!! I do the same for the other plans, the plant room plan aligns with ground floor whilst the roof plan aligns with fist floor [but not ground].

I have tried reinserting numerous times but am missing something?  The files were supplied to us as dwg format but I do not know the full history.

View 3 Replies View Related

AutoCAD Civil 3D :: Inserting A Survey File

Jun 29, 2012

We have a template file for all of our engineering drawings.  When we receive the topo from our survey department we insert the  topo (as a block) into our Eng. dwg. Our Survey  dept just did their first topo using 2012 and survey figures.  When we try to insert the dwg the system crashes.  I can XML the surface into the drawing, but I don't get the line work.

View 1 Replies View Related

AutoCAD Civil 3D :: Inserting SID File Using Geospatial Tool Space

May 1, 2012

I'm trying to insert images from a Mr. Sid file using the geospatial tool based setup. It worked fine last week, but for some reason the images are NOT coming into correct coordinates nor are they coming in scaled correctly. I've tried resetting multiple settings but no luck so far...

View 1 Replies View Related

AutoCAD Civil 3D :: Labels Orient To World UCS When DWG Opened

Aug 24, 2012

I have a storm drainage drawing that has all the parts, pipes, and their labels in model space (as a data reference) and everything shows up fine in Civil 3D 2010.  But my drafter opened the drawing in regular 2010 auotcad with object enablers loaded and the labels were rotated to the world coordinate system and not the plan view.  Is there a setting in the styles that controls this? 

View 5 Replies View Related

AutoCAD Map 3D :: Importing JPGs With JPGW World File

Jul 30, 2013

I have been sent a very large number of files for which the world file is jpgw not jpw. Is there any way to get AutoDesk to recognize this? I know that I can get it to work by renaming the world file to jpw, but I have hundreds of files so really don't ant to go down that route.

View 5 Replies View Related

AutoCAD Map 3D :: Insert TIFF Image With World File TFWX

Nov 22, 2013

How would I insert a *.tiff image with a world file that is *.tfwx into MAP 2014? 

MAP appears to ignore it.

View 5 Replies View Related

GIMP :: World Map (GIF File) - Remove Circles On Top Of Image

Jun 7, 2011

I have a world map(.gif file) which has yellow circles on top of it. I need to erase all the them from the map. How can I do it using GIMP? Is there anyway I can get my original picture back?

View 3 Replies View Related

Photoshop :: Zipping TIFFs - File Gets Zipped But Not Layers

Nov 16, 2013

If I zip tiffs using Image Processor or Image Processor Pro, the file gets zipped but not the layers. That means the zipped tiffs are much bigger than the psds. Zipping the layers manually is very tedious, but gets the size down to about the same or slightly less than a psd. It seems to me that selecting zip for compression should zip everything by default. It doesn't seem to.

View 1 Replies View Related

Photoshop :: Converting Multiple TIFFs To Multi Page PDF File

Nov 30, 2012

My Windows 7 PC does have CS5 installed. I also have a full Office 2010.
 
I've got 32 TIF files, each the page of a comic book. i want to crete a 32 page PDF file. Turning one tiff into one PDF in Photoshop is easy. But two or more into a single pdf document... I don't see how.
 
I went to some other forums and was called 'stupid', 'lazy' etc. and am very frustarted at this. I simply cannot spend any more time researching because I have wasted days doing just that.

View 4 Replies View Related

Lightroom :: File Format For External Editing - Uncompressed 16 Bit TIFFs

Jun 23, 2012

I shoot in raw and typically edit files as ProPhoto uncompressed 16-bit TIFFs. It's been a while since I set that as my default and I can't remember what the tradeoffs were for compression and even PSD vs. TIFF. Is there a handy reference to inform these choices?

View 6 Replies View Related

AutoCAD Civil 3D :: Translate Point Coordinates From Paperspace To World Coordinates In Modelspace

Jun 18, 2012

i am trying to translate a Point coordinates from Paperspce to world coordinates in model space.The code i used in Land2006 worked OK but now in Civil3d 2012 it doesn't!

Private Sub GetPlais_Click()
Dim tmpnt1 As Variant, tmpnt2 As Variant, tmpPnt1 As Variant
Dim lole(0 To 2) As Double, upri(0 To 2) As Double
Dim returnobj As AcadObject

FrmGrid3.Hide
On Error GoTo Eline
ThisDrawing.Utility.GetEntity returnobj, tmpPnt1, "ÅðÝëåîå ôï ViewPort ðïõ èá äçìéïõñãçèåß ï êÜíáâïò!"
If TypeOf returnobj Is IAcadPViewport Then
[code]........

View 1 Replies View Related

AutoCAD Map 3D :: Inserting Hyperlinks To A File

Oct 1, 2012

I want to insert hyperlinks to a file I have. 

I use the command 'hyperlink' I select the object and the program crashes and is 'not responding'

Now the tricky is that this happens both in Autocad Map 2010 and 2013. And happens also in files I already have hyperlinks and new ones. If I run the software as an administrator in my pc, the command works excellent.

I insert hyperlinks in the files for many years and till now everything worked fine.

View 2 Replies View Related

AutoCAD .NET :: Inserting Blocks With Value For Y Is 0 From CSV File

Jul 23, 2013

I am trying to insert some blocks that i read from CSV file. I am reading the values for X and Y position from a CSV file and inseting blocks with this values in AutoCAD. 

Here is my

[CommandMethod("BI_5")] public void BlockInsert_5() { String filePath="C:\Users\Dimitar\Desktop\imp.csv"; CsvDoc csv = new CsvDoc(filePath, true); for (int i = 0; i < csv.Data.Count; i++) { string blockQualifiedFileName = csv.Get<string>(i, "Block Path"); double scale = 3.0; Vector3d DispacementVector = new Vector3d(Double.Parse(csv.Get<string>(i, "PosX")), Double.Parse(csv.Get<string>(i, "PosY")), 0); // Database tmpDb = new Database(false, true); tmpDb.ReadDwgFile(blockQualifiedFileName, System.IO.FileShare.Read, true, ""); Matrix3d Transform = ed.CurrentUserCoordinateSystem; Transform = Transform * Matrix3d.Scaling(scale, Point3d.Origin) * Matrix3d.Displacement(DispacementVector / scale); db.Insert(Transform, tmpDb, true); } }

One of the values for Y is 0. And the block instead of showing on X,0 it shows at some X,Y value. If you need to see the csv file I can upload it.

View 7 Replies View Related

AutoCad :: Inserting A File Into A Drawing

Jul 20, 2011

I have an exercise where I created a title block. phase 2 of the exercise asks me to insert the title block into another existing dwg. I went to the insert tab then went to attach the file I had created for the title block.

View 9 Replies View Related

AutoCAD Civil 3D :: Inserting SID Images Files

Oct 11, 2012

What do I need to do in order to insert .sid image files into civil 3d 2011 drawings?

View 4 Replies View Related

AutoCAD Civil 3D :: Inserting Points Into Drawing?

Mar 6, 2013

Under Toolspace/Survey/Survey Point I have a series of points shown.  These are not shown under points in the prospector tab. How to insert these into my actual drawing?

View 2 Replies View Related

AutoCAD 2010 :: Inserting Xref With A File Name

Feb 26, 2013

When inserting an xref, which I have prepared with a file name etc in a drawing, Autocad prompt me this message" The file you have chosen cannot be used as a block name or is greater than 8 characters. Autocad has assigned a shortened block name. Enter an Altenate name "

why so? This happen not with all file!

View 9 Replies View Related

AutoCAD .NET :: Inserting Text Into Drawing File

May 24, 2012

Inserting text into Autocad drawing file (like inserting image )using c#.

View 2 Replies View Related

AutoCad :: Inserting GIF Picture To Drawing File

Jun 2, 2007

I inserted .gif picture to my drawing file. Is it possible to insert the picture into the file that when I open the dwg file on other pc, it doesn't need gif picture from my hard drive? I want to copy dwg ( Do I have to copy all the pictures too?)to the CD and print it in a copy store.

View 9 Replies View Related

AutoCAD Civil 3D :: Inserting Point Of Curve In Alignment?

May 11, 2012

I am a fairly new user to C3D so this may seem simple.

Can I insert a point on an alignment at a particular Station?

View 2 Replies View Related

AutoCAD Civil 3D :: Inserting And Aligning Live Map To Drawing?

Sep 16, 2013

i am trying to attach a live map to the c3d2014.

first i set the projection and then it asks me  insertion point.

1)why the map do not come in at the correct location and c3d needs me to specify the incertion point?

2)then it asks the rotation. i thought that all maps are pointing at north. but if i set it at 90 degrees pointing straight to the north a get a litle rotation that becomes very noticeable as i move far from the incertion point.

if the 90degrees is wrong, how can i find the correct rotation to give the c3d?

3) ok. that map is incerted. can i pan , move it ?rotate it ? how ?

View 3 Replies View Related

AutoCAD Civil 3D :: Inserting Excel Tables Into 3D 2013

Oct 14, 2012

tried to insert Excel tables into 2013 3D?  It worked fine in 2012 but we just upgraded to 2013 and it no longer works.  We get an error message that Excel is not supported.  Is this a new feature or a bug?  Also, our old drawings with the table already inserted does not plot normally.  The table characters print at diffent sizes.

View 9 Replies View Related

AutoCAD Civil 3D :: Inserting Points On Specific Layer?

May 31, 2012

I have made an add-in that automates the insertion of points on a surface and I am trying to find out how to put these points on a specific layer. I guess that changing the "standard" default Point style would do the trick, but I can't find the objects to use in the Civil3D API.

Civil3D 2012
VS 2010, VB or C#

View 4 Replies View Related

AutoCAD Civil 3D :: Inserting New Sections Into Section Views

Mar 9, 2012

I had about 20 cross sections that I created multiple section views for. I added 2 cross sections (one near the beginning, one in the middle).

Can I get these new sections to insert into their proper locations (by station) with a kind of refresh of my multiple section views without having to recreate multiple section views?

I already have the section sheets lined up in viewports on layout tabs.  I want to keep everything in the same place.  If the only way I can add the new sections is to create multiple section views again, what's the best way to handle this?  Draw some kind of cross-hairs in model space when picking where to generate them and pick on the same point every time?

View 3 Replies View Related

AutoCAD Inventor :: Inserting (JPEG) Image In DWG File

Aug 23, 2010

I am having trouble inserting a JPEG image in Inventor 2011 LT drawing (DWG) file.  The Image button on Insert panel under Manage tab is always disabled.  I am able to bring in the image using Insert Object feature and selecting 'create from file' option.  Although the resulting image looks OK on the screen, it looks inverted and distorted when printed.

I am facing the same problem when I try to insert image in a dwg sketch, however, the process works as expected on part sketches.

View 8 Replies View Related

AutoCad :: Inserting PDF File - Failed To Create Object

Aug 7, 2013

Is there a way to import a pdf file into ACAD? I have tried inserting an OLE image but I get an error "Failed to creat object. Make sure the object is entered in the system registry."

View 8 Replies View Related

AutoCAD Civil 3D :: Crash When Inserting Hyperlinks In Mtext Object

Jan 15, 2010

I am inserting hyperlinks in an mtext object using the following commands:

1. Within the mtext box, right click and select "insert field"
2. Choose "linked"
3. Choose "Hyperlink"
4. Type in the web address in the box to allow autodesk to load the website
5. Choose "insert link"
6. Modified "text to display"
7. Exit text editor.

When I exit the text editor, the program crashes.

View 1 Replies View Related

AutoCAD Civil 3D :: Inserting Picture With Exif Gps Data Attached?

Jul 8, 2012

Inserting a picture with exif gps data attached

View 1 Replies View Related

AutoCAD Civil 3D :: Inserting Goggle Earth Surface To Drawing

May 10, 2012

I am trying to insert a goggle earth surface into my drawing. It hits 50% and then I get a fatal error. Had tried several times.

View 3 Replies View Related

AutoCAD 2010 :: Inserting Template File Which Contains Attribute With Image In It?

Mar 7, 2013

I created an attribute of a title block, our company logo is inserted as a raster image within the attribute, I created this dwg file into a dwt file (template) however every time I open a new drawing and insert in the template file in the paperspace tab the attribute comes in but always with the logo?

The frame of the logo shows up with the file path of where is is located.

View 4 Replies View Related







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