Hi Taekyun,<div><br></div><div>Thank you for your response. &nbsp;I actually was copying the width and height from my memory and forgot to include the (double) cast. &nbsp;It doesn&#39;t make a difference in practice. &nbsp;Even trying a hard-coded 0.75 to presumably get a 75% image does not work.</div>
<div><br></div><div>I&#39;m actually now having cairo paint the scaled image into a Pixmap instead of directly onto the window, so I can inspect the pixels. &nbsp;They seem to be zero.</div><div><br></div><div>I wonder if it&#39;s a depth issue. &nbsp;As I said, the source is an 8 bit grayscale image but the screen is 24 or 32 bits. &nbsp;I&#39;m not sure if cairo can handle paining from one depth to another.<br>

<br><br><div class="gmail_quote">On Mon, Jun 27, 2011 at 10:43 AM, Taekyun Kim <span dir="ltr">&lt;<a href="mailto:podain77@gmail.com">podain77@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div bgcolor="#FFFFFF"><div>I think you did integer division. Something like &quot;(double)width / (double)xImage-&gt;width&quot; might solve your problem.</div><div><br>2011. 6. 28. ¿ÀÀü 12:05 Justin Anderson &lt;<a href="mailto:justin@rayonix.com" target="_blank">justin@rayonix.com</a>&gt; ÀÛ¼º:<br>
<br></div><div><div></div><div class="h5"><div></div><blockquote type="cite"><div>I should mention that the source image is an 8 bit grayscale. &nbsp;Thanks.<br>
<br><br><div class="gmail_quote">On Mon, Jun 27, 2011 at 10:00 AM, Justin Anderson <span dir="ltr">&lt;<a href="mailto:justin@rayonix.com" target="_blank"></a><a href="mailto:justin@rayonix.com" target="_blank">justin@rayonix.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello,<div><br></div><div>I&#39;m trying to resize an X11 XImage which is a 640x480 pixel image from a video grabber, to be displayed on a window in an X11/Motif application.
</div><div><br></div><div>If I comment out the scale command in the following code, the image is displayed fine, albeit clipped on my window. &nbsp;If I uncomment the scale operation, there is no image in the window.</div><div>


<br></div><div>Any ideas? &nbsp;Thanks!</div><div><br></div><div><br></div><div><div><br></div><div>&nbsp;&nbsp; //Create a simple X11 window for displaying the XImage...</div><div>&nbsp;&nbsp; window = XCreateSimpleWindow(</div><div>&nbsp;&nbsp; &nbsp; &nbsp;display,</div>


<div>&nbsp;&nbsp; &nbsp; &nbsp;RootWindowOfScreen(screen),</div><div>&nbsp;&nbsp; &nbsp; &nbsp;0, // x</div><div>&nbsp;&nbsp; &nbsp; &nbsp;0, // y</div><div>&nbsp;&nbsp; &nbsp; &nbsp;width,</div><div>&nbsp;&nbsp; &nbsp; &nbsp;height,</div><div>&nbsp;&nbsp; &nbsp; &nbsp;0, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// border width</div><div>&nbsp;&nbsp; &nbsp; &nbsp;BlackPixelOfScreen(screen), // border</div>


<div>&nbsp;&nbsp; &nbsp; &nbsp;BlackPixelOfScreen(screen) &nbsp;// background</div><div>&nbsp;&nbsp; );</div><div>&nbsp;&nbsp; XMapRaised(display, window);</div><div>&nbsp;&nbsp;&nbsp;</div><div>&nbsp;&nbsp; //cairo stuff...</div><div>&nbsp;&nbsp; cairo_surface_t *surface_dest = cairo_xlib_surface_create(display, window, XDefaultVisualOfScreen(screen), width, height);</div>


<div>&nbsp;&nbsp; cairo_t *cr_dest = cairo_create(surface_dest);</div><div>&nbsp;&nbsp;&nbsp;</div><div>&nbsp;&nbsp; cairo_surface_t *surface_source = cairo_image_surface_create_for_data((unsigned char*)(xImage-&gt;data), CAIRO_FORMAT_RGB24, xImage-&gt;width, xImage-&gt;height, xImage-&gt;bytes_per_line);</div>


<div><span style="white-space:pre-wrap">        </span>&nbsp;</div><div>&nbsp;&nbsp; cairo_scale(cr_dest, width / xImage-&gt;width, height / xImage-&gt;height);</div><div><br></div><div>&nbsp;&nbsp; cairo_set_source_surface(cr_dest, surface_source, 0, 0);</div>


<div>&nbsp;&nbsp; cairo_paint(cr_dest);</div><div>&nbsp;&nbsp; cairo_surface_destroy(surface_source);</div><div><br></div><div>&nbsp;&nbsp; //Put the scaled XImage on the window...</div><div>&nbsp;&nbsp; XPutImage(display, window, gc, xImage, 0, 0, 0, 0, width, height);</div>


<div><span style="white-space:pre-wrap">        </span></div><div>&nbsp;&nbsp; cairo_surface_destroy(surface_dest);</div></div><div>&nbsp;&nbsp; cairo_surface_destroy(surface_source);</div>
</blockquote></div><br>
</div></blockquote></div></div><blockquote type="cite"><div><span>--</span><br><span>cairo mailing list</span><br><span><a href="mailto:cairo@cairographics.org" target="_blank">cairo@cairographics.org</a></span><br><span><a href="http://lists.cairographics.org/mailman/listinfo/cairo" target="_blank">http://lists.cairographics.org/mailman/listinfo/cairo</a></span></div>
</blockquote></div></blockquote></div><br></div>