I am programming a research experiment to presenting participants with text snippets in different fonts, and one text font is not dissplay properly. When presenting Monotype Corsiva the characters are being cut off strangely (see the screenshot below). Does anyone have a workaround, or any suggestions on how to fix this? Full disclosure, I can run the script perfectly on my mac, but the equipment im using for the experiment is windows based.
I am running this code on a windows 10 psychoPy v1.85.4:
# -*- coding: utf-8 -*-
# Import the PsychoPy libraries that you want to use
from __future__ import absolute_import, division
from psychopy import locale_setup, gui, visual, core, data, event, logging
from psychopy.constants import (NOT_STARTED, STARTED, PLAYING, PAUSED, STOPPED, FINISHED, PRESSED, RELEASED, FOREVER)
from psychopy.tools.filetools import fromFile, toFile
import numpy as np # whole numpy lib is available, prepend 'np.'
from numpy import (sin, cos, tan, log, log10, pi, average,
sqrt, std, deg2rad, rad2deg, linspace, asarray)
from numpy.random import random, randint, normal, shuffle
from psychopy.iohub import EventConstants, ioHubExperimentRuntime, module_directory, getCurrentDateTimeString
import os # handy system and path functions
import sys # to get file system encoding
import csv
############################################################
win = visual.Window(
[1440, 900],
[1, 1, 1] ,
color=(1, 1, 1),
fullscr=True,
colorSpace='rgb',
blendMode='avg',
monitor="testMonitor",
units='norm')
# Initialize components for Routine "instructPractice"
instr1 = visual.TextStim(win=win, name='instr1',
text="Some long instruction text",
font='Monotype Corsiva',
pos=[0, 0], height=0.06, wrapWidth=20, ori=0,
color='black', colorSpace='rgb', opacity=1,
depth=0.0)
# make instruction appear until key event
instr1.draw()
win.flip()
#self.hub.sendMessageEvent(text="instructions_start",sec_time=flip_time)
if 'escape' in event.waitKeys():
core.quit()