Jump to content

All Media Lab

Members
  • Posts

    473
  • Joined

  • Last visited

Posts posted by All Media Lab

  1. Yes I have 10.14.6 too and here it works perfect. You will only notice the effect when you do a extreem zoom in in Affinity Photo and click the effect-layer on and off.

    When you only use the Topaz Sharpen AI zoom that only gives you 400% zoom you hardly notice it.

    Beware that it are very subtle  differences you see, but it should work and you should see it.  

     

  2. Hi,

    Just purchased a new iMac and a AP and AD license and try to find the plugins I have (all Topaz Labs) to connect in Affinity Photo. I'm used to use them in Windows 10 so I wonder where do I find the plugin folder of the Topaz plugins on my iMac? I manage to find the Topaz folder, but when I look inside there is no plugins folder.

    Regards & Thanks,

    David

  3. Quote

    I have no idea what a "common user" might do when visiting a web site but my point remains that site designers cannot completely control what users see when they do that, whether or not the designer includes those attributes.

    Why do have to be so negative? The general user will visit a website or web application and experience exactly  what the meaning is behind the site or app on all devices with images loaded in all  necessary resolutions. That's how browsers work nowadays. Companies like Amazon cloud services, Cloudinary and Imagekit  serve millions of websites in browsers around the world  with the proper image resolution in that particular device on that particular moment. 

    You can achieve it with simple HTML:

    <picture>
    <srcset>

    So in general you can say that you can control it for almost a 100% and the people who shut off JavaScript or else you can count on one hand.

    How do we know this? Because we use all kinds of analytics software and bots to get that info from the users. (of course with respect for their privacy).

  4. With the code I showed you in my previous reply zooming in or out in a browser results in loading higher or lower resolution images. With resolution we mean size in pixels in webdesign.

    Quote

    Most modern browsers permit users to override or ignore HTML attributes like those. For example, Apple's Safari browser allows its users to set a default zoom level on a per website basis, to use "Reader Mode" on compatible web pages, to change the "User Agent" string it sends to the server (including to an arbitrary custom string), or even to completely disable loading images. Similar features are either built into most other modern browsers or can be added via extensions.

    Sorry but I make websites for 15 years now and common user just look at a website and enjoy it!

     

  5. Quote

    Basically, there is no "right size" for web pages -- the display size (& smoothness) depends on several factors that you can completely control only for your own browser running on your computer, but not on anybody else's. 

    Yes you can control the image size "right size" on every browser from anybody loading your website and on any device by using:

    <picture> and <scrset>

    In your image HTML code and let the browser decide what image to load/show based on screen resolution in pixels and or device width etc. etc..

    Example:

    <picture>
                          <source media="(max-width: 475px) and (orientation: portrait)"
                          type="image/webp"
                          data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-Phone-webp/Home-Phone_gaoz5z_c_scale%2Cw_480.webp 480w,
                          Responsive-Images/Home/background-image/bg-Phone-webp/Home-Phone_gaoz5z_c_scale%2Cw_909.webp 909w,
                          Responsive-Images/Home/background-image/bg-Phone-webp/Home-Phone_gaoz5z_c_scale%2Cw_1200.webp 1200w" class="lazyload">
                          <source media="(max-width: 475px) and (orientation: portrait)"
                          data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-Phone-jpg/Home-Phone_gaoz5z_c_scale%2Cw_480.jpg 480w,
                          Responsive-Images/Home/background-image/bg-Phone-jpg/Home-Phone_gaoz5z_c_scale%2Cw_909.jpg 909w,
                          Responsive-Images/Home/background-image/bg-Phone-jpg/Home-Phone_gaoz5z_c_scale%2Cw_1200.jpg 1200w" class="lazyload">
                          <source
                          media="(min-width: 476px) and (orientation: portrait)"
                          type="image/webp"
                          data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-Tablets-webp/Home-tablet_jmso5a_c_scale%2Cw_768.webp 768w,
                          Responsive-Images/Home/background-image/bg-Tablets-webp/Home-tablet_jmso5a_c_scale%2Cw_1210.webp 1210w,
                          Responsive-Images/Home/background-image/bg-Tablets-webp/Home-tablet_jmso5a_c_scale%2Cw_1536.webp 1536w" class="lazyload">
                          <source
                          media="(min-width: 476px) and (orientation: portrait)"
                          data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-Tablets-jpg/Home-tablet_jmso5a_c_scale%2Cw_768.jpg 768w,
                          Responsive-Images/Home/background-image/bg-Tablets-jpg/Home-tablet_jmso5a_c_scale%2Cw_1210.jpg 1210w,
                          Responsive-Images/Home/background-image/bg-Tablets-jpg/Home-tablet_jmso5a_c_scale%2Cw_1536.jpg 1536w" class="lazyload">
                          <source media="(max-width: 4800px)"
                          type="image/webp"
                          data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_800.webp 800w,
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_1755.webp 1755w,
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_2390.webp 2390w,
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_2977.webp 2977w,
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_3514.webp 3514w,
                          Responsive-Images/Home/background-image/bg-wide-webp/Home-Wide_xev1iq_c_scale%2Cw_3840.webp 3840w" class="lazyload">
                          <img data-sizes="auto"
                          srcset="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                          data-srcset="
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_800.jpg 800w,
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_1755.jpg 1755w,
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_2390.jpg 2390w,
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_2977.jpg 2977w,
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_3514.jpg 3514w,
                          Responsive-Images/Home/background-image/bg-wide-jpg/Home-Wide_xev1iq_c_scale%2Cw_3840.jpg 3840w" class="lazyload"
                          src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Full screen image">
                        </picture>

     

  6. Hi Mike,

    No problem at all! Just keep the proper pixel sizes in Affinity for your web design and don't even look at 72 DPI, because in web design only the size in pixels counts not DPI (=only for print).

    In Affinity you can always zoom in and out (it doesn't effect the image) as long as the "document size" and/or "export size" in pixels is what you want. Of course you can edit a 8000px X 8000px image on a 1080 x 1920, 4K or 5K screen it doesn't matter. A bigger screen resolution is only more handy for larger images nothing more or less. 

    Regards,

    David

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