Images made using ipad apple pen are coming up small?

(For some reason I cannot post an image to show what is happening)

But I have not hd this issue before. The images made using the ipad scribble are coming up as too small on the desktop version. Please help me solve this issue.

Is the Anki window full screen? Images are automatically shrunk to fit the screen by default.

If that doesn’t explain it, could you please try again to attach a screenshot?

Hi, I am having this sort of situation. Every time I make a note using the iPad the following happens. Also just for reference I have the following add-ons installed:

Screenshot 2020-09-03 at 19.12.13

Thank you for your help :slight_smile:

Also, when I go in the edit. the right size comes up:

but when I try to do the question it is tiny. Not sure if it might be caused by the new update. Do you have ay ideas?

Try to open the card template window on PC and add img { ... } to the styling section - Introduction - Anki Manual

Anki shrinks images to fit the screen by default. You can change this by adding the following to the bottom of your styling section (outside of the default .card { ... } ):

img {
  max-width: none;
  max-height: none;
}
1 Like

Just in case, here’s a video - https://imgur.com/DQ7MYqS

1 Like

If that doesn’t help, please rule out add-ons. https://faqs.ankiweb.net/when-problems-occur.html

1 Like

Thank you! :slight_smile: This worked. Can I now create a new card type or something with this code added? I don’t want to have to keep manually changing the card every time I want to do it?

Sure, just make sure that the code is there or add it again if it’s not there.

Yes, it’s just a one-time change and there’s no need to do it again and again as the card template (or, more specifically, its Styling section) will be shared between all cards with the same note type

Introduction - Anki Manual
Introduction - Anki Manual

1 Like