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

Search the Community

Showing results for tags 'Photo'.

  • 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 (Serif 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.2 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. Hello: I have an existing EPS logo I'm adding to a photo illustration and want to shrink it first, then maybe rasterize it. But when I shrink it, the strokes remain the same thickness and do not scale proportionally. If I were working in Adobe Illustrator, this is a simple preference that can be checked or unchecked. But I can't find any sort of preference like that in Affinity Photo. I tried opening it in Designer, but it similarly didn't have an option to keep strokes the same proportion. So how do I keep the vector strokes the same proportion when scaling? This is one of the MANY frustrations I've had with Photo! While Photo does have easier ways to edit PHOTOS, it's hard for me to use it for GRAPHIC raster-based illustrations the way I did with Photoshop (lack of bitmap mode, lack of raster stroke selection, etc.) Thanks.
  2. I'm writing to share some tips, but I also hope Affinity developers will see these and make the Arrange tools easier to use in future versions. I'm working on texture images for 3D models which need to be symmetrical from left to right. Conceptually for me, the easiest thing to do is paint on the left side, duplicate the layer, flip the copy, and mask if necessary. But I've found it exceptionally difficult to get expected behavior from Affinity Photo's Arrange menu items. Keep in mind that all these tips are in the context of using Flip transforms to end up with artwork that is mirrored left-to-right or top-to-bottom. Tip #1: If the layer you want to mirror has a mask, make sure there are visible pixels somewhere at the extreme edges. Photo apparently does not use the current selection as a guide to how you want to flip stuff. So if the layer you need to flip was created by pasting, it might flip according to bounds smaller than your full image width, even if you hit Ctrl-A to select the full image bounds before flipping. As a result, even if the visible pixels mostly fill the layer, the flipped portion can end up the the wrong place. To be sure my flipping will result in a mirror image, I make sure to paint a few visible pixels along the left and right edges when flipping horizontally, or along the top and bottom edges when flipping vertically. Basically I use pixel painting to make sure the layer I'm flipping extends across exactly the full width or height of the image before I flip it. To be fair, Photo's behavior in this regard is not a bug. If you've pasted in something small on a collage and need it to face the other way, you don't want it to jump from one side of the screen to the other when flipped. Tip #2: Temporarily set the layer to full opacity and Normal mode before flipping, if applicable. Today I had a layer with a mask set to Color Burn mode at 10% opacity, and flipping horizontally simply erased the layer's content. I tried several times but always ended up with a blank layer. I wondered if opacity or mode was somehow confusing the program, so I set the layer to Normal mode at 100% opacity, and then flipping worked. Tip #3: If the Arrange menu items are grayed out, lasso- or box-select something to copy and (temporarily) paste. I started a new document from an image I wanted to mirror. After duplicating the Background layer, I found the Arrange menu's transform items all grayed out. In an attempt to enable them, I tried all these things in turn: Made sure the unlocked duplicated layer was selected Hit Ctrl-A to select the full image size Saved and quit and reopened the program Renamed the duplicate layer in case the program prevents you from transforming based on the name "Background" Added a new, empty pixel layer Quit the program again and updated to version 2.2.0 before retrying Nothing worked. Then I used the lasso to copy and paste a small portion of the duplicated layer, and the Arrange menu items came alive. After that I was able to delete the temporarily pasted layer and then flip the duplicated layer.
  3. It is possible to increase/decrease the rotation angle of an object using the scroll wheel of your mouse when hovering over the belonging input field (in steps of 1 degree). With 'Ctrl' pressed, the increment/decrement is 0.1 degree, which is already very helpful. Question: Is there a way to get an even finer increment/decrement of 0.01 degrees? (I often have to align scanned images, where finer rotation steps would prove useful)
  4. Some time ago I produced a macro to Wrap an Image around a Bottle or Mug. This involved some complex trigonometrical operations on the image. I present here an alternative approach for a macro to perform the same action. Here is my original image: o It is easily possible to produce an equation that contracts the image width-wise to emulate the reduction in perceived width as the image is wrapped. Such an equation has the form: x=w/2+(w/2-x)*pi/2 and has the result of: The contraction is uniform across the reduced width. The expression pi/2 is the appropriate scaling for a bottle diameter that accepts the image around its half-circumference. What I was aiming for was a function that would scale the edges so that they appeared contracted, whilst applying zero scaling to the centre of the image. After much trial and error, I came up with this: x=w/2-(w/2-x)*(1+1.571*(1-sqrt(1-(1-2*x/w)^2))) Edit: Note that this has a minus sign after the first w/2. The original had a plus sign. The value 1.571 is just half pi. The resulting image is: This is a single result. I have further refined by including a scaling parameter, a, which accentuates the compression at the edges. w/2+(w/2-x)*(1+(1.571/a)*(1-sqrt(1-(1-2*x/w)^2))) Here it is with the a parameter around half. Note that in these images, the central squares remain square. Edit: Like my previous version it has a parameter (in this case b) which affects the viewpoint, above or below. If you want to use this then you need to enlarge the canvas vertically beforehand to give room for the curvature. You may wish to use Document > Clip Canvas at the end in this case. Edit: various members had pointed out that the final image was flipped horizontally. This has now been fixed. I have also added Layer > Unlock and Layer > Rasterize at the start of the macro. I have not added a clip canvas at the end. Do you think that this is desirable? Here is the macro: WrapAroundV2.afmacro John
  5. This is so necessary for keeping objects in register for things such as animation.
  6. This is an extension of my tutorial on Trigonometrical transformations using Filter > Distort > Equations. This one is focused on simulating flags waving in a light wind. Flags have an advantage in that they have a standard shape (width is twice the height). Edit: I have been told that this is not true. I stand corrected. To get the desired waving, I apply a sine transformation to each of the x and y-axes. The equations to apply are: x=(x+20*sin(360*y/h))/c-100*b y=y+a*(h/10)*sin(2*360*x/w)-(x/w)*h/10 I add a sideways sine wave to the x-axis as a function of the y-position. When the flag waves, the visual width is decreased, so I have added a parameter c which scales the width of the flag. The parameter b is an offset, since the left-hand corners of the flag can otherwise move outside the canvas. The y-axis also has a sine wave, depending on the x-position. The parameter a determines the magnitude of this sine wave. The final expression (-(x/w)*h/10) ensures that the fly (RHS in this case) is below the hoist (LHS here). (Definitions: hoist is the part next to the flagpole; fly is the part flying free.) Here is the UK Union Flag, plus a bit of extra space above and below to create room: And waving in the breeze: And here is a macro that implements these transformations: FlagWaving.afmacro And a macro library containing the single macro: FlagWaving.afmacros The parameters should appear when you run the macro. Parameter a controls the vertical wave; parameter b controls the horizontal offset; parameter c controls the overall horizontal scaling. This macro will not simulate a flag in too strong a wind, where the parts overlap! John
  7. Is there a way to set a default for column guide or grid settings? I often find my self working on a document and just needing a quick grid to line things up, so I use the keyboard shortcut and nothing shows up, then I need to go open the window and pick a preset for anything to show up. (I think Photoshop would always have the previous grid remembered.) (I'm using Affinity Photo 2.1.1 specifically)
  8. Having used the pen tool to produce a curve, I select the brush line style, by clicking on the line graphic, click on properties, click on a brush in the brushes panel and the brush appears in the properties panel and then ... nowt. Help.
  9. Here are some 35mm and 4x5 filmstrip templates which can be easily reused in AD/AP as photo borders, or for other sort of image presentations etc. - Each of these templates does contain always two (in past times) popular analog film brand looks, so you can switch between them through enabling/disabling layers, or modify/add your own additional ones. There is always also an indicated image place section, where you can mount your photos in. AD/AF Templates: 35mm_film_template.afdesign 4x5_film_template.afdesign 35mm_strip_template.afdesign Examples:
  10. When is AFFINITY going to allow plugins to be made for their software? I would really like to use HOT DOOR CADTOOLS. Its an amazing plugin. I recently asked them if they intend on making a DESIGNER version. But they said AFFINITY doesn't allow this? This is odd, these other companies can help you grow and give us users the specific needs they require. This goes for PHOTO as well. AFFINITY your software is great, but it could be even more amazing with tons of companies supporting it. Please open the doors to these developers. If you don't believe me see how BLENDER had risen to the top of the 3D with completely open source coding. The addons for this software are amazing, making great software even better and one of the best communities for software ever. Just my thoughts Gary
  11. I am right handed and was wondering if the dock tools can be permanently moved to the right side of the interface?
  12. Some Affinity Designer v.1.10.5 based Easter Stuff vector assets. - Note: the assets are compound of unlocked, grouped vectors, thus when moving, resizing etc. inside docs, make sure to always select the outer group layer. The assets file: easter-stuff.afassets You will find a bunch of other Affinity related things under some of my other resources contributions, see therefor: Retrospective of resources contributions Have a nice and peaceful Easter time!
  13. Hello, I'm looking for option in Affinity Photo to select some area with light texture and clone stamp it to wide area but I don't want source to be moving when I paint. Is this possible to lock that position somehow or use other tool trick to solve that goal? Maybe option to create brush from that? Greetings.
  14. What is this life if, full of care, we have no time to stand and stare? Or make silly composite pictures from pure whimsy? I realise in the last couple of weeks I've been doing just that, and so why not share 'em with you folks! I read that Roald Dahl's children's books are being made more 'suitable' for today's children; mention of reading Rudyard Kipling has been changed to Jane Austen. Cue old joke made new: A long time ago on BBC TV, the late Michael Bentine had a sketch with a mad scientist who'd invented the next step up from painting by numbers: spray-on classic paintings. To demonstrate, Hals' Laughing Cavalier and da Vinci's Mona Lisa . . . -- or you can spray them both at the same time to get The Laughing Lisa! Serendipity! In the course of looking for something completely different (pace Mothy Python) I learned that Geiger is German for violinist; Stehgeiger is German for cafe violinist ('standing fiddler); and Geigerteller is German for Geiger counter. So there must e a German word for . . . And finally Esther (British in-joke):
  15. I was building some fairly large panoramas in Affinity Photo today, pointed AP at 30-40 raw files and sent it on its way. I was working on another (non-AP related) task when my C: drive filled up! I had to scramble to free up some space. Several programs I had started panicking on the low disk space, though I never saw a message from AP. I ended up canceling the rendering of my panos to worry about it later. When I closed AP, several gigs were cleared up on C:. I have a larger data disk that I would prefer to be used for this type of temporary data, but I couldn't find anything in the settings pages that allowed me to change it. Is there a setting for this, and if so, where? Thanks!
  16. If I make some edits or tweaks to a photo in the native iPad Photos app (or another 3rd party app, I think) and then open that image in Affinity Photo using the 'Import From Photos' option, Affinity will open the original image. Any pre-existing edits will have been stripped out and just the original JPG gets pulled in to Affinity. Thoughts? Running Affinity Photo version 1.6.7.76 and iOS 11.3 on 9.7" iPad Pro.
  17. Hi Everybody, I've imported my custom brushes from Photoshop, but they lag a lot when using them in Affinity Photo. It takes a good 5-7 seconds before my mark appears, even just a single click. I'm not using a tablet, just a mouse. My brushes tend to be large (2000px), but nothing that PS couldn't handle. Any ideas? I thought about turning off the brush preview, but I need it to see where I'm laying down my marks. Thanks!
  18. I’m not seeing the folder icon for Affinity Photo showing up? The Folder is there but no graphic as with Designer and Publisher. is there a reason for this?
  19. Affinity Photo v2 iPad Version - Beginners Guide to using Drag and Drop and the Place Command The tutorial starts off with a look at the Embedded and Linked Placement Policy, plus using the Resource Manager check and alter the Placement Policy of files. The actual tutorial starts by looking at how to drag and drop single and multiple files from the iPad’s File and Picture Folders, plus from a web page. Then a look at using the Place Command to do the same thing. Lastly a look at using the Place Command while using a Photoshop PSD Mock-Up file. Intro – A Look At The Placement Policy – 0 to 2:56 Drag and Drop from the Photos Folder – 2:57 Drag and Drop from the Files Folder – 5:45 Drag and Drop images from the Internet – 8:16 Using The Place Command – 11:52 Using Place Command with a PSD Mock-up file – 13:53 Serif’s Affinity Help File web page https://affinity.help/ Dropbox PDF iPad version Download Link https://www.dropbox.com/s/yzcm75vonfp619o/iPad%20Version%20-%20Affinity%20Photo%20v2%20-%20Beginners%20Guide%20to%20Affinity%20Photo%20-%20Part%204.pdf?dl=0 Dropbox PC version PDF Download link https://www.dropbox.com/s/ws6dey2yeaxzsrf/Affinity%20Photo%202%20-%20Tutorials%20Vol-010%20-%20Beginners%20Look%20At%20Placing%20Images.pdf?dl=0 Mock-up PSD File from Freepix as used in this tutorial. https://www.freepik.com/free-psd/blank-billboard-mockup_2736937.htm#query=mockup&position=17&from_view=keyword&track=sph
  20. Hello Affinity Team, Is there a way to preview the cursor/brush size while painting or brushing? I understand the iPad doesn't have hover support but at least while brushing, I hope to see the boundaries of the brush. Thank you so much!
  21. I've always loved Lightzone's Zone Mapper - which is based loosely on Ansel Adam's zone/tone idea. The idea is extremely intuitive .. but. the execution has an efficient and productive UI. Despite having used Adobe Photoshop, GIMP, Krita, Affinity Photo, etc .. I still keep the free Lightzone installed for the zone (tone) mapper. (I also love the very easy and intuitive shape tool which acts as a mask for applying any filter or operation .. with adjustable non-destructive shape and edge transition) Here's a set of video tutorials https://www.youtube.com/watch?v=xq1tyuZXbpo&list=PLUECp8xv0O0DPqRL8Qgrs6ZQVVvrGfZPP I really wish Affinity did this .. instead of the less intuitive set of filters which seem to have a high barrier to expertise .. and seem very inefficient in terms of desktop real estate ... their retained settings are counterintuitive. Just honest friendly feedback.
  22. Hi, In Sketch and Photoshop it's possible to make timeline animations. Are there any plans for Affinity? I'm talking about something like this: https://timeline.animaapp.com/ Regards, David
  23. Hello I would like help! I had a photo subscription activated through the microsoft store, but I had to format the computer and now I can't find the v1 version to install via the microsoft store, I found a download on the official website but I can't activate it, my license is no longer valid same for the V1? Sorry for my English, I'm using google translator! Thank you very much in advance!
  24. Hello. I would like to propose a feature that would allow the user to copy and paste raw adjustments to multuiple RAW files from develop persona. I believe currently this is not possible. This feature will make the applying adjustments much faster and easier for many kinds of workflow including timelapse. And additionally an option to export multiple selected RAW images at once. This two features will be a game changer for affinity as a whole. I believe this could be a great direction for the software. This could increase the interest of lot of people considering RAW editing is now considered a standard for most. I hope affinity will place this higher in the priority if possible. Thanks.
  25. Hello Am i missing something or are the WARP tools found in Designer not in Photo? This should be available in both programs and used the same way. Gary
×
×
  • 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.