Jump to content
You must now use your email address to sign in [click for more info] ×

Search the Community

Showing results for tags 'EPS'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Affinity Support
    • News and Information
    • Frequently Asked Questions
    • Affinity Support & Questions
    • Feedback & Suggestions
  • Learn and Share
    • Tutorials (Staff and Customer Created Tutorials)
    • Share your work
    • Resources
  • Bug Reporting
    • V2 Bugs found on macOS
    • V2 Bugs found on Windows
    • V2 Bugs found on iPad
    • Reports of Bugs in Affinity Version 1 applications
  • Beta Software Forums
    • 2.5 Beta New Features and Improvements
    • Other New Bugs and Issues in the Betas
    • Beta Software Program Members Area
    • [ARCHIVE] Reports from earlier Affinity betas

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Location


Interests


Member Title

  1. Guys, it should be great app for microstock contributors. There're a huge amount of users, who can prefer AD instead of Illustrator. But there're many things that you need to do, if you want to increase the amount of users. The main thing for microstock illustrators is normal export to EPS format, especially EPS10, that all microstocks approve (http://goo.gl/oIYOpA). "Normal": 1) without problems of rasterization (now with gradients) 2) with handy option of expanding, like in AI (text, brushes, lines, etc.) 3) with the possibility to continue editing in Illustrator - hope it's temporary. http://www.istockphoto.com/help/sell-stock/training-manuals/illustration/quality-standards - this manual can help you. You are just amazing! Waiting for more comfortable version for microstock illustrators. You must think about this, seriously. Microstock users are a huge piece of world market of illustrators. p.s. sorry for not so perfect english
  2. OK, so one of the first things I do when looking at a new piece of software is see if it is "truly" compatible with Adobe illustrator. That is, it can not only import but export a usable file. Just about every software I have used cannot export gradients without breaking down each color into little bands or rasterizing it. Xara Extreme is the only one I have found thats works well, though they only have a PC version. It seems Affinity Designer is one that does NOT work will with exporting eps or svg files with gradients. Although it says that it can, and there is even a check box that allows files to be editable as a vector file, if there is any object overlapping, if there is a gradient, forget it. In fact, I created a box with a single color and one curve, exported as a eps, and it converted it to a bitmap. (see attached). One of the second things I do is see if I can draw a straight line at a specific angle, or at a angle specified in snap mode. I didn't find that feature yet. Anyone? I create stock illustrations and these stock sites insist on editable EPS version 10 files, no bitmaps objects. I'm think I did not find my replacement for Illustrator. ___ This make this software totally unusable for me. SO, I was hoping that someone could prove me wrong and show me how this will work.
  3. Hi @ all, I have to send a 76x66cm photocollage including a cut to a printservice. The original .afphoto file with all pics is about 400MB. Affinity photo is working already for 2 hours now to export to .eps @ 300dpi. Does anyone know how long it will take to finish this export? Will go to bed now, hopefully it is done next morning. ;-) Best regards, Michael
  4. Hi All, New to Designer and still getting use to the software and features. I am having some trouble with exporting a project to EPS format for production on a laser cutter. I have masked a texture with a region so that the texture lines only appear within the region bounds (accomplished by making the texture a sub-layer of the region). The exported EPS file looks fine but when it is loaded into the laser cutter the texture's hidden lines (outside of the region's boundary) appear. The EPS does not 'flatten' the layers and remove the hidden lines (issue is similar to the one explained here: http://www.inkscapeforum.com/viewtopic.php?f=31&t=13723, they just have pretty pictures). I have attached the original EPS file and a snapshot of what the laser cutter sees. Is there an easy way to remove these hidden lines from the EPS file? Thanks in advance for the help, Sean Test Cut.eps
  5. I am trying to print a large banner 37 feet by 4 feet. I can create the canvas and then place all of the content onto the canvas and save the document as an afdesign file. But every time that I try and export any output I get the "boing" sound indicating an error of some type and I am unable to export anything in any form, bitmapped or vector. I have no bitmapped content and no effects for which bitmapping might be applied. If the output size is less than 12 inches then I can export but anything over a relatively small paper size refuses to process. Any suggestions?
  6. Not everything can be easily done with AD tools or can not be done at all. For example, try to draw what is shown at the picture below. There are simply limitations of graphical user interface and some patterns require a different approach. Luckily, Affinity Designer can open encapsulated postscript files. Encapsulated postscript allows you manual generation of high-quality graphics. It means that you write a program in Postscript language which subsequently is interpreted by AD. To do this, you should only have so-called programmers text editor. It can be Apple TextEdit, Wrangler or Textastic. There is a problem, though. Before you try to open EPS file in AD, you should check if your program contains no errors. Postscript and Encapsulated Postscript files are interpreted by GhostScript program which can be called from a command line in Terminal window. First, you have to check if you have Ghostscript installed. If not, then you have to install it. In Terminal enter command: gs -version When the command was not found then you can download the latest version of GhostScript from Richard Koch page (http://pages.uoregon.edu/koch/). Locate the GhostScript link with the highest version number and click on it. This will start the download of the GhostScript package installer. How the download actually happens is dependent on your browser and system setup. Once the installer has downloaded, open the folder it was downloaded to. Double click the PKG icon and follow the on-screen instructions. Accept the defaults if you don't know what to change. Once the install process has finished you can check if GhostScript is installed and ready for action by entering gs command again: bash-3.2$ gs -version GPL Ghostscript 9.16 (2015-03-30) Copyright © 2015 Artifex Software, Inc. All rights reserved. Now you can write simple EPS program and check it with GhostScript. Using text editor enter Truchet Pattern program and save it using eps as filename extension. The code for Truchet Pattern is from "A Short Introduction to PostScript" by Peter Fisher: (http://sus.ziti.uni-heidelberg.de/Lehre/Tools1213/PostScript_PeterFischer.pdf) %!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 0 0 592 842 %% File name: TruchetPattern.eps %%BeginProlog %%EndProlog 2.835 dup scale 5 4 translate 1 setlinecap 0 0 200 290 rectstroke 100 145 translate /W 10 def /W2 { W 2 div } bind def /DRAWUNIT { gsave translate rotate W2 neg W2 neg W2 0 90 arc stroke W2 W2 W2 180 270 arc stroke grestore } def -95 W 95 { /x exch def -140 W 140 { /y exch def rand 4 mod 90 mul x y DRAWUNIT } for } for showpage %%EOF In Terminal, go to directory where your EPS file was saved and open it with gs program: bash-3.2$ gs TruchetPattern.eps GPL Ghostscript 9.16 (2015-03-30) Copyright © 2015 Artifex Software, Inc. All rights reserved. This software comes with NO WARRANTY: see the file PUBLIC for details. Error: /undefined in setroke Operand stack: Execution stack: %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1951 1 3 %oparray_pop 1950 1 3 %oparray_pop --nostringval-- 1934 1 3 %oparray_pop 1820 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- -85 10 95 --nostringval-- %for_pos_int_continue -130 10 140 --nostringval-- %for_pos_int_continue --nostringval-- Dictionary stack: --dict:1181/1684(ro)(G)-- --dict:0/20(G)-- --dict:87/200(L)-- Current allocation mode is local Last OS error: Invalid argument Current file position is 428 GPL Ghostscript 9.16: Unrecoverable error, exit code 1 Here we have syntax error: Error: /undefined in setroke After correcting this error, subsequent GhostScript run result is: bash-3.2$ gs TruchetPattern.eps GPL Ghostscript 9.16 (2015-03-30) Copyright © 2015 Artifex Software, Inc. All rights reserved. This software comes with NO WARRANTY: see the file PUBLIC for details. %%BoundingBox: 12 9 583 835 %%HiResBoundingBox: 12.738234 9.903234 582.611748 834.926740 >>showpage, press <return> to continue<< You should press <return> and enter quit command to exit from GhostScript interpreter: GS>quit bash-3.2$ Such created eps file should be visible in Finder, and Preview program can open it without complaining. When you are sure that EPS program is correct, then you can open it in Affinity Designer, select, copy and paste object into your design. TruchetPattern.afdesign TruchetPattern.eps Square.eps
  7. Id love some help! Im creating print ready banner art. Each time I try to export, in any format except affinity, Affinity Designer crashes. What can I do? thanks! rs opening.soon.afdesign
  8. If I open a AI eps file that still has editable text, in Designer it converts the text to outlines. Will this be fixed in a future update?
  9. Hi There, I'm brand new to Affinity Designer so might be doing something wrong but after placing a logo from illustrator (.eps) it has a white background (see attached image). I've made sure it doesn't have a background colour (swatches) but no luck. I found this thread but no answer that I could see: https://forum.affinity.serif.com/index.php?/topic/3243-remove-eps-white-background/?hl=eps+white+background Does anyone know how to make placed eps files transparent? Any pointers in the right direction would be much appreciated. Cheers Ben
  10. Hi there, I'm working with a document currently that has several embedded .afdesign files (as they were created in Affinity originally). However, when I export the document, all these elements are rasterised and become ugly. This is an issue as I'd like to be able to have one logo which I make tweaks to, embedded in some mockups. Is there a way around this? I really like the way embedding is implemented other than this. Cheers, D
  11. I have been looking already long time for an alternative for Illustrator, but I am working for stock agencies, and they insist on Illustrator compatible EPS vector files. Unfortunately, it seems like Affinity Designer Eps does not work well with Illustrator. I created a very simple test file, just a circle filled with a simple radial gradient, only two massive colors, no effects, no transparency, and saved it in EPS format. By saving I have chosen the option ( I have german interface, so i don't know how it sounds in English) „allow no rasterizing at all“. After opening EPS file in Illustrator gradient was rasterized. To be sure I created a few more files with gradients, as simple as the first and they all did not work in Illustrator. By saving the same files as SVG gradients got saved, I was able to edit them after opening in Illustrator. Did I anything wrong, or are EPS gradients exported from Affinity Designer generally not compatible with Illustrator? It would be really sad, I was so happy to find an alternative for Illustrator for my stock illustrations, but without option to create gradients it is not really an alternative. Can you help me?
  12. Hello, i need help, i place one logo.eps and your background is white, how i show a white background? Thanks for help
  13. Hi A beginner's question: I have an .eps file of 407 KB. I open it in AD, change background colour, export it as .eps. Now the size is 15 KB. Is there a way to keep this from happening?
  14. I am trying to use Affinity with my colleague who uses Adobe Illustrator (latest version). He saved a file as an EPS and I tried to open it with Affinity, it was a total disaster. He then saved it as an AI file and it is not as bad but still does not look the same. I thought this was supposed to be totally compatible with AI?
  15. Hi there I'm brand new to Affinity Designer so my apologies if I'm just being slow/silly - I am trying to export a figure for a manuscript, preferably as EPS. As the exported file comes out cut, I've downloaded the beta version and tried my luck there. The image is now exported in full size, but the resolution of the image files is off. I've attached the files. Oh, and exporting the (grayscale) file as a PDF results in a coloured output? I've been working with version 1.1.2 / 1.0.21861 with Yosemite (10.10.2) on a 15" MacBook Pro. Thanks for any help! Iris export_error_beta.eps export_error.afdesign export_error.eps export_error.pdf
  16. HELLO.I NEED A QUICK HELP EXPORTING MY FILES INTO EPS,PDF,etc.... I MAKE THE DESIGN AND WHEN I EXPORT THE BACKGROUND COLOR CHANGES,AND AFTER SAVING MY FILE IS RESIZED. :mellow: SORRY FOR THE WRONG LANGUAGE I AM NOT EXPERT IN ENGLISH,HOPE YOU UNDERSTAND. :) HERE IS A VIDEO LINK OF MY PROBLEM: https://www.youtube.com/watch?v=3HgDKSuevy8&feature=youtu.be
  17. I have a very small Logo - a colored rectangle with some white letters on it. So far so good. Filesizes: Designer = 1.5 mb PDF = 1.4 mb (text in curves or as font, doesn't matter) EPS = 45 kb (smallest size is the same) Same thing as I do a new doc with a simple colored area an some text on it. I think the EPS-size is worth the true estimated filesize here. But the AD and PDF filesize is so much more, is it overhead, just not compressed, or ...? And can I do something about this? Or will we gain more controll over PDF specific adjustments with the prepress overhaul? I tried also to open the exportet PDF in Illustrator and save it as standrd .ai format = 3.1 mb filesize - wow! Then I tried the EPS in Illustrator and saved it as standraf .ai format file = 95 kb. Bigger as the original but also ok. Same thing with all files I do. It seems that AD provides larger PDF files than others. This is difficult for me caus size always matters ;) See screenshot for difference.
  18. The only major thing holding me back from using Affinity as my full time vector image tool is the import handling of vector images. I use eps files a lot in my work and when I import(place...) an eps file it gets saved on the layer as an embedded document. I then have to double click on the image to edit it. Then I need to double click on that image to select its curves. I next copy its outline, go back to my original document and then I paste the outline into my document. I then need to delete the imported image(embedded document). If I don't do the above process, The image will not print(cut). Is there any way that Affinity can turn on a user preference that will allow a user to select if they want to import images as embedded documents or converted as curves upon placing them in the document? Or, provide a button that can be clicked to automatically convert to curves instead of doing the above procedure? I know this has been asked before but I haven't seen a definitive answer if this is something that will be available soon or not. It's this and curved text that is preventing me from cutting the strings on Illustrator (I can wait for the other goodies on your future upgrade path). I am using the beta.
  19. So I create a layered design in AD then I export it as an EPS. All is good until I reopen it in AD and I get the botched flattened image, the second attachment. BackgroundAD_sample.afdesign
  20. Hi all I have imported a EPS file i live traced on another program. I am able to bend and move nodes fine, but I am not able to group certain sections, such as eyes, mouth etc. any idea if this is possible? https://drive.google.com/file/d/0B66fxiOBO1cGREJ3Rnl2MTNPaWM/view?usp=sharing above is a link to the file.
  21. Hello, I created in Affinity Designer half of an apple and exported it as eps file in order to use it in Strata Design 3D for creating a Lathe object. Strata is tightly connected with Adobe products and should accept it, however nothing appears on the grid. I downloaded the AppleTemplate.eps file from Strata's web site and it was successfully imported. I tried several approaches in creating the eps file in Affinity, converted to curves, rasterised, but nothing changes. Is there anything specific that I should do in Affinity Designer in order to make the eps file more compatible than it is ? Thank you.
  22. Hi, I am working a lot with eps files. I noticed that if I import an eps file, the fonts are all converted into vectors. Would it be possible to fix this, that entire text parts can still be used as text and not as single vectors? This problems only seems to appear in in the eps files, because in the pdf or ai files the text is read in as text. Thank you very much already and keep up your great work :)
  23. Hi Affinity. I typically use Illustrator for annotating scientific figures made in Matlab (e.g.). When I import .ps and .eps files into AD, the text is not imported as text, but as curves. Is this a result of the way the .ps files are generated or something specific to AD? As a note, when I import these same files to other programs (Illustrator, Preview) the text is treated as words (Art Text in AD vernacular). Note the selected '0' within '5500'. I would expect the whole of '5500' to be a single element.
  24. Two things: 1) When I import an existing AI file, the CMYK values change in Affinity compared to the original file in Illustrator. 2) After making color changes, I then output the vector logo using web coated SWOP v2 color space and relative colorimetric settings. Opening it in Photoshop (5.1) or Illustrator (5.1), I see the CMYK values all change. Have the values in the Affinity file actually changed, or is the nature of going between the different software packages? Bottom line is I want to trust my assigned CMYK values in the file are preserved and correctly interpreted by pre-press. Manup-Logo-cmyk-187process.afdesign
  25. I am encountering a strange issue when exporting both EPS and PDF When i import the EPS/PDF into illustrator some of the vectors are vectors and others are images (pixels) I can't find a difference between the line settings.. they're not brushes and they don't have any pressure settings I can't figure this out. So excited about this application. The tools are intuitive and straight forward. I am an old Freehand user looking for an alternative to Adobe Frustrator. Steve
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.