Arc - pdf - Illustrator making odd rasterized data

Hello! A common element of our workflow includes exporting from ArcMap as a pdf, then opening that pdf in Illustrator and taking the resultant linework into our AI work file.  All of the sudden, my pdfs are coming into AI as an image would--broken into long strips instead of a series of discrete geometric objects. My coworker is not having this problem, and all of our settings are the same.  What could I be missing?  Thank you!
PS--exporting from Arc as an AI file has the same result

Oh for goodness' sake.  Ever have a file so complicated and ornery that you completely overlooked the easy stuff?  Thank you thank you!

Similar Messages

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I set up a .pdf form to save filled data without having to print the form?

    How do I set up a .pdf form to save filled data without having to print the form?  I have provided my clients a lifecycle .pdf form they can use to record data for unique client meetings.  They want the ability to save their completed data whenever they use the form under a unique file name.  I've told them the only way I know how to do this is to print the completed form as a .pdf document and then save it. 
    Is their a way to save the data to a unique file name without printing the filled form?
    Is there a way to reset the form with blank fields after saving? or to add a clear fields button?
    Thanks.

    If you reader extend  a pdf using livecycle reader extensions then you can save the filled in data - this is true if you are using Adobe reader to view the PDF's. If you open it in Acrobat then the functionality is already there.

  • Create a pdf document with an expiration date.

    as I can do to make the pdf document has an expiration date, starting from the date in which it has fallen.

    Actually, it can be done with JS, but it is far from a secure solution and there are various ways a user can get around it (download a new copy of the file, disable JS entirely, change their local time, etc.), so yes, for a real solution you'll need to use DRM technology.

  • How do I completely crop a PDF so that the cropped data is removed and the file size is reduced?

    How do I completely crop a PDF so that the cropped data is removed and the total file size is reduced?
    When I use the "Crop" function, the cropped data still remains in the file and there is no reduction in file size. I need a way to truly crop a PDF using Acrobat software.

    When you export, try to get the full file path or else you will have to do a lot of manual searching.
    If you downloaded the picture from Messages, the picture is stored in your User Library/Messages. to make your User Library visible, hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Messages/Attachments. 
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.4. I have also been informed that if you drag the user library to Finder it will remain visible.

  • Illustrator file saves incorrect date

    This problem just started out of the blue. Whenever I save illustrator files, the file date is 1/1/2000. Any ideas of how to fix this?

    I just checked and it happens with Photoshop too. My guess is all Adobe products are affected. Word documents are not affected.

  • How do you prepare a PDF file for 4 signatures & dates?

    How do you prepare a PDF file for 4 signatures & dates?

    Hi,
    You can achieve this by using text tags. EchoSign Text Tags are specially formatted text that can be placed anywhere within the content of your
    document specifying the location, size, type of fields such as signature and initial fields, check boxes, radio buttons and form fields, and advanced optional field processing rules. Text Tags can also be used as names of PDF Form fields.
    Text Tags are converted into EchoSign form fields when the document is sent for signature or uploaded to the EchoSign Document Library. EchoSign Text Tags can be placed in any document type such as PDF, Microsoft Word, PowerPoint, Excel and text files (.txt, .rtf)
    Please refer to page 5 ( date) and 10 (signature) of the Creating Adobe Echosign Forms With Text Tags.The document can be found here
    Thanks,
    Jat

  • Forwarding PDF from Iphone creates an .DAT file for the recipient

    Hello,
    I received an email on my iPhone which contained a PDF. I forwarder this email to my assistant but when she got the PDF it was now a .DAT file.
    Now, I figured out that she could just rename the file from .DAT to .PDF and it displayed ok. However, why is this happening? It's tedious to have to rename the file. And besides, you could never be sure it's a PDF to start with.
    My assistant (and myself) as PC folks using Outlook.
    Thanks,
    Helen

    More than likely the sender of the message is an Outlook user that uses RTF or HTML for message composition which is where this originates with attachments sent by an Outlook user that uses RTF or HTML for message composition when sent to a non-Outlook user - not shown with the received message on your iPhone, and this was forwarded with the received message and attachment.
    Since this is an IMAP account, you can check the long message headers with the received message with Outlook on your computer to determine the email client used to send the message.

  • Why are your Data Plans SO SCREWED UP? You are Unfairly making the average data user Subsidize the Big Data Users. This kind of thing is why I left AT

    Why are your Data Plans SO SCREWED UP? You are Unfairly making the average data user Subsidize the Big Data Users. This kind of thing is why I left AT&T and came to Verizon a Decade ago. Their plans sound better now, maybe I should go back.

    I currently have 5 phones/lines. 2 Droid MAXX phones, a Samsung Galaxy S5 phone and 2 basic phones (4+ year old Motorola & Samsung). The cost for each line rose considerably and usage fees more than doubled on the 2 basic phones when I upgraded the 3 smartphones at the beginning of this year and Had to Convert from my old Unlimited Family Plan to the Newer Share Everything Plan. My Data Usage varies a lot due to occasional travel which I have little control over. At least you recently began including a $10 deduction on each of the 2 older phones (which I have not updated in order to save money though they need updating). My Sweet Spot on Data would be around 6GB Monthly Data. But that level is not offered. Only 2, 3, 4, 10, or 15 GB plans are offered.
    Verizon's Data Plans Offered Are:  2GB-$50/MO = $25/GB  *   3GB-$60/MO = $20/GB   *   4GB-$70/MO = $17.50/GB   *  10GB-$80/MO = $8/GB   *  15GB-$100/MO =  $6.66/GB   *   And Overages are Charged at $15 per 1k-1GB.
    Offers JUMP From 4GB TO 10GB (There's a 6GB GAP/JUMP - ***) - Why is there NO 6 or 8 GB offering?  Because Verizon is Overcharging the Lower Data Users!  Seems like All of the Other Cellular companies are Offering Better Deals.
    If you can offer something better please let me know, otherwise I may have to consider going back to AT&T or moving to one of the other cellular companies.

  • PDF Preview: Making the Transition To Clustered Data ONTAP

    NetApp has refined its tools and processes for a smooth transition to clustered Data ONTAP. The latest software release removes the remaining barriers to entry, so if you’ve been holding back it’s time to make the move from 7-Mode to take full advantage of nondisruptive operations, scale-out, and more. This article explains the transition framework and provides links to the latest resources and tools.

    Please can someone help with NSO-157 exam study guide

  • PDF output does not refresh data in BI Publisher, XML and HTML do refresh

    I just upgraded to BI Publisher 10.1.3.4.0 and I noticed that the PDF format of the reports does not reflect recent changes in data, while XML data and HTML output do reflect changes in data immediately.
    I'm using BI Publisher to print APEX applications reports. When I change some data in APEX forms, I click again in the Print button and the data remains unchanged. I made some testing inside Oracle BI Publisher, and noticed that XML data and HTML output do reflect changes, but PDF output remains with the old data for some unknown amount of time. I cannot identify a method to force the PDF to refresh, just un-log and log in again several times until the data appears updated. This is serious because when users change data and print again, they expect the changes to be reflected in the new printable report, and may not notice that the data is the old version.
    OS is Oracle Enterprise Linux.
    Any help on this will be very welcome.
    Francisco

    Open the report in Edit Mode Click on the reports and in the properties section Uncheck the
    Enable Document Cache Property and your issue should be resolved.

  • Data missing when I print preview and export to pdf but do see the data when i navigate to that page in the report

    Hi,
    I have a report which consists of 9 subreports in 2 tables..
    When the run report I do see data.
    when i export to a pdf and print preview the report in Bids.. i see data for the first 22 pages and then the remaining pages are blank with just the header showing up...
    when i go to the pdf and select page 25 it is blank but when i go the report and not in print preview mode.. and i type in 25 in the page number data shows up on that page...
    the report is set to a portrait and the margins are set to 0.
    How can I solve this problems and why is it happening... the size of the sub report are the same..
    Any help will be appreciated.
    Thanks
    Karen

    I should add that when I e-mail this document to myself and print it directky from the iMac, it prints fine.

  • Why does placing links in Illustrator now change the "Date Modified" data for all of my files?

    This seems to be a new glitch that started after I installed the latest updates to Illustrator CC (2014) and reoccurs every time on both computers I work on:
    When I choose to place a new image in my Illustrator file and the window opens to let me choose a file to place, the "Date Modified" field of all the files in the folder I'm viewing (except other Illustrator files) quickly changes to the current date and time. This is definitely happening when I'm in Illustrator because when I needed files from a folder that had hundreds of images in it and I was able to select a file quickly, I was able to do so before it had changed the date on all of my files. However, when I needed a file from a folder that had hundreds of images in it but I took a long time to find the image I needed, Illustrator had time to change the date modified on all of my files. This might seem like an unimportant issue because it doesn't actually seem to modify or damage any of my files, but having all of the dates change on my files is a serious problem for my workflow and file management issues. So far, my only work around has been to use back-up image files, but that's not a long term solution and I don't understand why Illustrator should be modifying the dates of my files.
    Is there a setting I can choose somewhere to prevent this problem? If not, is there somewhere I can report this kind of glitch? I'm not sure if I'm using the exact language necessary to get the issue across so please let me know if you have any questions! Thanks!

    iCloud is not compatible with Snow Leopard, that is your problem.
    A quick way out is to purchase Soho Organizer which is compatible, even when running on Snow Leopard, it will correctly handle Contacts and Calendars from iCloud. $100, 2 user license.
    Soho Organizer
    There is a free trial if you want to try it.

  • Creation of PDF Document  using ADF Table data in new window

    Hi Guys,
    I have a requirement of creating a pdf document from adf table and it must open in a new window.I know creation of pdf document using itext pdf jar.But in my case how to write the table data to pdf and how to open it in new window.
    Thanks,
    Srinivas.

    In the TF do like this..
    view activity A-------dialog:invokePdf------->view activity B (invokePdf)
    Fragment A command button would be
    <af:commandButton action="#{pageFlowScope.PdfBean.openPDF}"
    text="Generate" id="cbpdf"
    useWindow="true"
    windowWidth="700" windowHeight="700"/>
    in the action add a return like return "dialog:invokePdf";
    Control flow outcome is "dialog:invokePdf". B would be just a empty fragment.

  • Interactive PDF created in CS6 InDesign data collection issue

    Created an interactive form from within CS6 InDesign. Uses text fields and check boxes with a submit button to forward the completed form to an email address. When tested in Acrobat Reader, the collected information will not be submitted, just a copy of the form -- blank. Any obvious solutions to this, perhaps a step I missed when creating in InDesign?
    Also, my submit button creates an email to send with form completed data input, and attachements too, can then be included. Is there a way to bypass the attachements step for the email and simply have an Include (browse) for attachements while within the interactive PDF?

    Which version of Adobe Reader are you using for testing purposes? Adobe Reader XI introduced the ability to save filled out PDF forms and submit them. For earlier versions as far as I'm aware you'd need to create a Reader Extended PDF, which is something you can do in Acrobat, not InDesign.
    If you have Adobe Acrobat:
    Open the PDF form you created in InDesign then
    File > Save as Other > Reader Extended PDF > Enable More Tools... and test it in Adobe Reader again.
    To answer your second question, not that I know... (neither in InDesign or Acrobat).
    However, if you have a copy of Adobe LivecycleDesigner, you can add a form object that can be used by users to include attachments.
    Cari

Maybe you are looking for

  • How do I move Adobe apps to another monitor in Mavericks?

    Hi guys, sorry if I'm being obtuse, but since upgrading to Mavericks the one issue I can't seem to figure out is how to completely move my adobe apps across to another monitor. The problem is now that apps like Illustrator CC, InDesign CC and the lik

  • Re: How can I get an accurate NS address?

    JC, Create an ExternalConnection object in the partition, and use the GetDotAddress method on it. That will give you the IP address of wherever your partition is running. You can do this with one line: MyIP : TextData = new( value = ExternalConnectio

  • Where is Adobe Media Encoder CC

    I think after an update, Adobe Media Encoder CC crashes on start-up. It actually crashed my Mac which never ever done it before. I tried to update and found out that Media Encoder CC is no longer listed as an app. Is there an application that replace

  • Downloading iTunes 10.4

    When I try to load itunes 10.4, it says it will take 24 hours - am I missing something?  I have checked all my pop ups etc?

  • Sap Gui Events to WD4A - Consecuences of note 1409237

    Hi Guys! This is mi first post here, I hope I can solve with my question many same problems. I've got a problem applying this note in my WDA application. I've got an ABAP application with one CL_GUI_WDR_VIEWER control and within a WD4A component. In