Jump to content

Recommended Posts

In Photo I made a square. Added text. It was pixilated, like the old bitmaps. I then switch over to Publisher and the text is perfect. 

Demo 1.PNG

Demo 2.PNG

Affinity Photo  2.5.3 / Publisher 2.5.3 / Designer 2.5.3

Affinity Photo Beta 2.5.5.2636 / Publisher Beta 2.5.5.2613 / Designer Beta 2.5.5.2613

AMD Ryzen 9 5900X 12 core / RAM 32GB / Windows 10 Pro version 21H2

Link to comment
Share on other sites

Photo will always show you the whole document ‘at the document resolution’, whereas Designer and Publisher will show you vector-based layers ‘at the screen resolution’.

Those aren’t the correct technical terms but hopefully you get the idea.

Photo = always see pixels, as the document would be when exported; Designer/Publisher = vectors shown more clearly.

This is normal for the Affinity applications.

Link to comment
Share on other sites

View it at 100% not the 782% you have it at in your screenshot.

Mac Pro (Late 2013) Mac OS 12.7.6 
Affinity Designer 2.5.5 | Affinity Photo 2.5.5 | Affinity Publisher 2.5.5 | Beta versions as they appear.

I have never mastered color management, period, so I cannot help with that.

Link to comment
Share on other sites

Ahhhhhhh, thank you both. I don't usually use text in Photo but thought I would this time, making a tile for a website.

 

Affinity Photo  2.5.3 / Publisher 2.5.3 / Designer 2.5.3

Affinity Photo Beta 2.5.5.2636 / Publisher Beta 2.5.5.2613 / Designer Beta 2.5.5.2613

AMD Ryzen 9 5900X 12 core / RAM 32GB / Windows 10 Pro version 21H2

Link to comment
Share on other sites

2 hours ago, RichZep said:

I then switch over to Publisher and the text is perfect. 

Try switch to Designer persona, and set View Mode (menu View or Toolbar) to Pixel.

Affinity Store (MSI/EXE): Affinity Suite (ADe, APh, APu) 2.5.5.2636 (Retail)
Dell OptiPlex 7060, i5-8500 3.00 GHz, 16 GB, Intel UHD Graphics 630, Dell P2417H 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.4317.
Dell Latitude E5570, i5-6440HQ 2.60 GHz, 8 GB, Intel HD Graphics 530, 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.4317.
Intel NUC5PGYH, Pentium N3700 2.40 GHz, 8 GB, Intel HD Graphics, EIZO EV2456 1920 x 1200, Windows 10 Pro, Version 21H1, Build 19043.2130.

Link to comment
Share on other sites

Affinity Photo is a raster tool, so it seems logical that images, including those of letters, should be converted to raster, with the corollary of pixelation. As I'm not much of a raster user, this is a point I wouldn't have thought of without your messages.

When a raster image is intended for a medium where it can be enlarged, for example an Internet page or a e-book, how can we limit this pixelation effect?

6 cœurs, 12 processus - Windows 11 pro - 4K - DirectX 12 - Suite universelle Affinity (Affinity  Publisher, Affinity Designer, Affinity Photo).

Mais je vous le demande, peut-on imaginer une police sans sérifs ?

Link to comment
Share on other sites

27 minutes ago, Pyanepsion said:

how can we limit this pixelation effect?

Increase image resolution.

The image is then displayed reduced in normal view, and when zoomed in, more and more detail is gradually displayed. Pixelation occurs when zooming in above the image resolution, when details are already missing. 

Edited by Pšenda

Affinity Store (MSI/EXE): Affinity Suite (ADe, APh, APu) 2.5.5.2636 (Retail)
Dell OptiPlex 7060, i5-8500 3.00 GHz, 16 GB, Intel UHD Graphics 630, Dell P2417H 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.4317.
Dell Latitude E5570, i5-6440HQ 2.60 GHz, 8 GB, Intel HD Graphics 530, 1920 x 1080, Windows 11 Pro, Version 23H2, Build 22631.4317.
Intel NUC5PGYH, Pentium N3700 2.40 GHz, 8 GB, Intel HD Graphics, EIZO EV2456 1920 x 1200, Windows 10 Pro, Version 21H1, Build 19043.2130.

Link to comment
Share on other sites

31 minutes ago, Pšenda said:

Increase image resolution.

 I’ve thought of forcing the point to the pixel, but this can only really work on verticals and horizontals, and, of course, increasing the resolution, but this quickly leads to a significant increase in capacity:

An image going from 72 to 300 resolution will go from 72 × 72 = 5,184 pixels per inch, to 300 × 300 = 90,000 pixels per inch.

The right solution, at least for the Internet, is to use images adapted to each magnification range:

To adapt to different screen sizes:

<picture>
  <source media="(min-width: 3841px) and (max-width: 5120px)" srcset="/webp/image_5120.webp">
  <source media="(min-width: 2561px) and (max-width: 3860px)" srcset="/webp/image_3860.webp">
  <source media="(min-width: 1201px) and (max-width: 2560px)" srcset="/webp/image_2560.webp">
  <source media="(min-width: 992px) and (max-width: 1200px)" srcset="/webp/image_1200.webp">
  <source media="(min-width: 768px) and (max-width: 991px)" srcset="/webp/image_992.webp">
  <source media="(min-width: 576px) and (max-width: 767px)" srcset="/webp/image_768.webp">
  <source media="(min-width: 480px) and (max-width: 575px)" srcset="/webp/image_576.webp">
  <source media="(min-width: 0px) and (max-width: 479px)" srcset="/webp/image_480.webp">
  <img src="/webp/umage.webp" alt="texte alternatif" title="Texte au survol" class="classe" id="identifiant">
</picture>

To be able to magnify by squashing your fingers if the application allows:

var img = document.getElementById('monImage');
var scale = 1;

img.addEventListener('touchmove', function(e) {
  if (e.scale > 1 && scale === 1) {
    // L’utilisateur a écarté les doigts, changeons vers une image haute résolution
    img.src = 'chemin/vers/haute-resolution.png';
    scale = e.scale;
  } else if (e.scale <= 1 && scale > 1) {
    // L’utilisateur a rapproché les doigts, revenons à l'image basse résolution
    img.src = 'chemin/vers/basse-resolution.png';
    scale = e.scale;
  }
});

 

6 cœurs, 12 processus - Windows 11 pro - 4K - DirectX 12 - Suite universelle Affinity (Affinity  Publisher, Affinity Designer, Affinity Photo).

Mais je vous le demande, peut-on imaginer une police sans sérifs ?

Link to comment
Share on other sites

9 hours ago, Pyanepsion said:

When a raster image is intended for a medium where it can be enlarged, for example an Internet page or a e-book, how can we limit this pixelation effect?

It is preferable not to use raster images for text wherever possible, so for instance use web page creation tools that allow you to create HTML text elements.

All 3 1.10.8, & all 3 V2.5.6 Mac apps; 2020 iMac 27"; 3.8GHz i7, Radeon Pro 5700, 32GB RAM; macOS 10.15.7
A
ll 3 V2 apps for iPad; 6th Generation iPad 32 GB; Apple Pencil; iPadOS 15.7

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • 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.