I'm trying to get started with Django Oscar and I can't get my images to load properly. Once I upload an image, I get this error - 'cannot write mode RGBA as JPEG'. The error comes from line 11:
6 {% block product %}
7 <article class="product_pod">
8 {% block product_image %}
9 <div class="image_container">
10 {% with image=product.primary_image %}
11 {% oscar_thumbnail image.original "x155" upscale=False as thumb %} <!-- this line throwing error -->
12 <a href="{{ product.get_absolute_url }}">
13 <img src="{{ thumb.url }}" alt="{{ product.get_title }}" class="thumbnail">
14 </a>
15 {% endwith %}
16 </div>
17 {% endblock %}
Would this be because I don't have libjpeg properly installed? I'm running this on Windows and it's still not clear to me if I have installed libjpeg correctly. What exactly to I need to do with that package after downloading if that is my issue?
Let me know if I can provide more information that would be helpful.