active questions tagged imaging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T20:54:15Z http://stackoverflow.com/feeds/tag/imaging http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832080/convert-a-microsoft-document-imaging-file-mdi-in-java-or-under-linux 0 convert a microsoft document imaging file (.mdi) in java or under linux Yves030 2009-12-02T10:38:06Z 2009-12-02T10:38:06Z <p>Hi experts,</p> <p>I am looking for a peace of java-code that is able to open a .mdi file (microsoft document imaging) and save it as a tiff or pdf-file. I googled a few hours but did not find any. All I know now is that .mdi is derived from tiff, but I could not find an exact format description anyway. Any linux-tool, that could do the conversion would also be very helpful... any hints?</p> <p>thanks a lot in advance. yves</p> http://stackoverflow.com/questions/1825213/how-to-create-thumbnail-images-in-classic-asp 1 How to create thumbnail images in classic asp? Vikas 2009-12-01T10:05:51Z 2009-12-01T20:22:40Z <p>I found the best solution in <a href="http://www.codeproject.com/KB/asp/thumbtools2.aspx" rel="nofollow">codeproject</a></p> <p>But to enable that, I need to register the com object first.</p> <p>So is there any other way to create thumbnails with out using any third party?</p> <p>In about example we have to use CxImageATL.dll. If we can't do without third party then, Is there any other way to use this dll with out registering the dll on server?</p> http://stackoverflow.com/questions/1799896/does-there-exist-a-digital-image-steganography-algorithm-which-would-be-resistant 2 Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Vilx- 2009-11-25T20:58:36Z 2009-11-25T21:27:49Z <p>I'm wondering - is there a steganography solution for digital images which is resistant to image manipulations? With "manipulations" I mean the most standard operations - recompressing JPEGs (or even changing file formats entirely), cropping and scaling. The application of this method would naturally be for image copyright protection.</p> <p>I fully understand that the more image is manipulated the less are the chances that the steganographic watermark is intact, but at least some degree of resistance would be nice.</p> http://stackoverflow.com/questions/1797903/converting-rgb-images-to-cmyk-in-net 0 Converting RGB images to CMYK in .net [closed] John Hoge 2009-11-25T15:57:35Z 2009-11-25T16:43:06Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/623636/net-tiff-file-rgb-cmyk-conversion-possible-without-3rd-party-lib">.NET TIFF file: RGB &gt;&gt; CMYK conversion possible without 3rd party lib?</a> </p> </blockquote> <p>Hi,</p> <p>I'd have a library of jpg images on my site that I would like to convert to CMYK TIFF images. Some of my customers require CMYK TIFF for print production (yes it still exists). </p> <p>One solution is to convert everything in a PhotoShop batch, but that means two separate files for each image. What I would rather do is keep only the RGB JPG files and convert them upon request to a CMYK TIFF for download.</p> <p>I don't think I can do this in System.Drawing, but there has got to be some other way.</p> <p>Thanks, John</p> http://stackoverflow.com/questions/1750275/how-to-display-ibitmapimage-on-cdc 0 how to display IBitmapImage on CDC tommyk 2009-11-17T17:00:30Z 2009-11-19T07:58:06Z <p>What is the best way to display IBitmapImage on a device context. I am using Windows CE 6.0.</p> <pre><code>void CImaginingTestView::OnDraw(CDC* pDC) { CImaginingTestDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); IBitmapImage* pBitmapImage = pDoc-&gt;GetBitmapImage(); if (pBitmapImage) { // how to draw my bitmap on a pDC ?? } } </code></pre> http://stackoverflow.com/questions/1242511/iimage-from-ibitmapimage 1 IImage* from IBitmapImage* Hernán 2009-08-07T01:50:03Z 2009-11-17T12:55:10Z <p>I'm using the Imaging API to basically write a rescaling function using the Imaging built-in Resize function.</p> <p>I need to feed a custom UBitmap class that it's constructed with an Image* pointer with the resized function, so here's the Rescale function proto:</p> <pre><code>int Rescale(const UBitmap* src, UBitmap* dst, UINT w, UINT h) </code></pre> <p>My function allocates heap for the dst pointer (caller does need to free it only).</p> <p>What I've done so far:</p> <pre><code>// Get the IImage ptr from the source HRESULT hr; CoInitializeEx(NULL, COINIT_MULTITHREADED); IImage* img_in = src-&gt;GetIImage(); if (img_in) { IImagingFactory* pImgf = NULL; hr = CoCreateInstance(CLSID_ImagingFactory, 0, CLSCTX_ALL, IID_IImagingFactory, void**)&amp;pImgf); assert(SUCCEEDED(hr)); IBitmapImage* pIResBmp = NULL; hr = pImgf-&gt;CreateBitmapFromImage(img_in,w,h, PixelFormatDontCare, InterpolationHintBilinear, &amp;pIResBmp); assert(SUCCEEDED(hr)); IImage* pImgOut = NULL; // How to obtain IImage pointer from pIResBmp? bmpOut = new UBitmap(dst); pImgf-&gt;Release(); } CoUninitialize(); </code></pre> <p>So I've successfully rescaled the image with the pImg->CreateBitmapFromImage call, but I don't know how to obtain IImage* to feed the UBitmap constructor.</p> <p>THanks in advance.</p> http://stackoverflow.com/questions/1157385/pygame-and-blitting-white-on-white-gray 4 Pygame and blitting: white on white = gray? Ron Eggbertson 2009-07-21T05:02:52Z 2009-11-10T19:38:30Z <p>I'm using pygame (1.9.0rc3, though this also happens in 1.8.1) to create a heatmap. To build the heatmap, I use a small, 24-bit 11x11px dot PNG image with a white background and a very low-opacity grey dot that stops exactly at the edges:</p> <p><img src="http://img442.imageshack.us/img442/465/dot.png" alt="Dot image" /></p> <p>The area around the dot is perfect white, #ffffff, as it should be. However, when I use pygame to blit the image multiple times to a new surface using BLEND_MULT, a grey square appears, as though the dot background wasn't perfect white, which doesn't make sense.</p> <p>The following code, plus included images, can reproduce this:</p> <pre><code>import os import numpy import pygame os.environ['SDL_VIDEODRIVER'] = 'dummy' pygame.display.init() pygame.display.set_mode((1,1), 0, 32) dot_image = pygame.image.load('dot.png').convert_alpha() surf = pygame.Surface((100, 100), 0, 32) surf.fill((255, 255, 255)) surf = surf.convert_alpha() for i in range(50): surf.blit(dot_image, (20, 40), None, pygame.BLEND_MULT) for i in range(100): surf.blit(dot_image, (60, 40), None, pygame.BLEND_MULT) pygame.image.save(surf, 'result.png') </code></pre> <p>When you run the code, you will get the following image:</p> <p><img src="http://img263.imageshack.us/img263/4568/result.png" alt="Resulting image after blending" /></p> <p>Is there a reason this happens? How can I work around it?</p> http://stackoverflow.com/questions/545676/save-wpf-image-with-shader-effects-applied 0 Save WPF image with Shader effects applied Valentin Vasilyev 2009-02-13T11:55:09Z 2009-11-06T20:28:06Z <p>I have a WPF Image control with attached blur effect. Is there a way to save the image (with blur) without using RenderTargetBitmap?</p> <p>Thank you.</p> <p>UPDATE: I'm using now new custom effect which derives from System.Windows.Media.Effects.ShaderEffect. I would like to save my image with shader effect applied.</p> http://stackoverflow.com/questions/1661995/printing-a-wpf-bitmapimage 0 Printing a WPF BitmapImage James Jones 2009-11-02T15:35:27Z 2009-11-03T16:23:50Z <p>What's the best way to print a BitmapImage? I come from a background in System.Drawing so I was thinking about converting it to a Bitmap and then printing it, but I'm thinking there's probably a better way.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1628842/image-format-question 0 Image format question banister 2009-10-27T04:56:21Z 2009-10-27T18:36:37Z <p>Hey there,</p> <p>I'm using an image loader (DevIL) for image loading. Im just wondering if the image format (the uncompressed format in memory) loaded from files (.jpg, .png, .bmp etc) is determined by the image loading program itself, or is some way contingent upon the actual image file.</p> <p>All of the images I have looked at so far seem to be loaded into the RGBA / UNSIGNED_BYTE format. However I am wondering if I can always rely on this. Is it conceivable that an image might actually be loaded into the RGBA / FLOAT format instead? (NOTE: i am hoping that the loaded image format will always be the same, i want to rely on it:)</p> <p>I can't find any docs in DevIL that explains this point, so I'm hoping anyone experienced with imaging / image loading could give me an answer just based on their experience / common sense.</p> <p>Thanks</p> http://stackoverflow.com/questions/1474354/rounded-corner-control 0 rounded corner control John Hoge 2009-09-24T21:49:27Z 2009-10-16T08:00:02Z <p>I'm looking for a .net imaging control to use in a generic handler to process images. Right now I'm using OnlineImageOptimizer, which is a great component for resizing on the fly. </p> <p>What I would love to do is take a photo, resize to the right dims, round off the corners, throw in a drop shadow and optimize into a small, high quality jpg. </p> <p>Anybody have any experince with a control to do that?</p> http://stackoverflow.com/questions/1441967/python-imaging-alternatives 6 Python imaging alternatives Paul McMillan 2009-09-18T00:05:57Z 2009-10-09T19:03:58Z <p>I have python code that needs to do just a couple simple things to photographs: crop, resize, and overlay a watermark. I've used PIL, and the resample/resize results are TERRIBLE. I've used imagemagick, and the interface and commands were designed by packaging a cat in a box, and then repeatedly throwing it down a set of stairs at a keyboard.</p> <p>I'm looking for something which is not PIL or Imagemagick that I can use with python to do simple, high-quality image transformations. For that matter, it doesn't even have to have python bindings if the command line interface is good.</p> <p>Oh, and it needs to be relatively platform agnostic, our production servers are linux, but some of our devs develop on windows. It can't require the installation of a bunch of silly gui code to use as a library, either.</p> http://stackoverflow.com/questions/483014/generate-image-file-with-low-bit-depths 0 Generate image file with low bit depths? Jeremy Rudd 2009-01-27T11:12:03Z 2009-10-07T18:32:20Z <p><strong>bpp</strong> = bits per pixel, so 32bpp means 8/8/8/8 for R/G/B/A.</p> <p>Like .NET has an enum for these "System.Drawing.Imaging.PixelFormat".</p> <p>Now once I have a <strong>Bitmap</strong> or <strong>Image</strong> object with my graphics, <strong>how would I save it</strong> to a file / what format would I use?</p> <p>What image file format (JPEG/GIF/PNG) supports low bit-depths like 16bpp or 8bpp <em>(instead of the usual 32bpp or 24bpp)</em></p> http://stackoverflow.com/questions/1068373/how-to-calculate-the-average-rgb-color-values-of-a-bitmap 1 How to calculate the average rgb color values of a bitmap Matthias 2009-07-01T10:24:55Z 2009-10-02T14:32:24Z <p>In my C# (3.5) application I need to get the average color values for the red, green and blue channels of a bitmap. Preferably without using an external library. Can this be done? If so, how? Thanks in advance.</p> <p>Trying to make things a little more precise: Each pixel in the bitmap has a certain RGB color value. I'd like to get the average RGB values for all pixels in the image.</p> http://stackoverflow.com/questions/1182086/image-property-tag-constant 0 Image Property Tag Constant Adrian Godong 2009-07-25T13:22:30Z 2009-08-30T15:31:57Z <p>I'd like to use the <a href="http://msdn.microsoft.com/en-us/library/ms534413%28VS.85%29.aspx" rel="nofollow">image property tag constants</a> defined in GDI+ from .NET.</p> <p>I wonder whether these constant values (<strong>e.g. PropertyTagGpsVer constant</strong>) are exposed in any of the Base Class Library?</p> <p>I have tried looking around System.Drawing.Imaging namespace to no avail.</p> http://stackoverflow.com/questions/563156/how-do-you-specify-the-specific-group-3-tiff-compression 3 How do you specify the specific Group 3 tiff compression? Adrian 2009-02-18T22:34:22Z 2009-08-27T12:37:36Z <p>Group 3 compress has 2 variations (Group 3 1D and Group 3 2D). When saving an image in Tiff format, there is only one option for Group 3 in the EncoderValue enumeration. Is there a separate parameter that controls this?</p> http://stackoverflow.com/questions/1263290/find-an-image-in-an-image-c 2 Find an image in an image C# Weizman 2009-08-11T22:18:04Z 2009-08-11T22:34:03Z <p>Hi</p> <p>I have a scan of a document (a form actually) filled with some handwritten infos.</p> <p>I have a bitmap of the form empty.</p> <p>how can i "cancel" the printed form to extract the handwritting only.</p> <p>I use C#... Thanks Jonathan</p> http://stackoverflow.com/questions/678682/how-to-save-an-exif-format-image-file-in-net-3-5 1 How to save an EXIF format image file in .NET 3.5 TMarshall 2009-03-24T18:45:52Z 2009-08-08T02:21:24Z <p>I want to save an image in EXIF format using System.Drawing.Image.Save or a similar method in a C# application using .NET framework v3.5. The MSDN documentation lists EXIF as an option for ImageFormat. However, it does not seem to be supported - at least not without some configuration unknown to me. When I enumerate the built-in encoders via ImageCodecInfo.GetImageEncoders() EXIF is not included. (Built in encoders on my machine (Vista Ultimate x64) are: BMP, JPEG, GIF, TIFF, and PNG.) If I save an image using the ImageFormat.Exif property, I simply get the default PNG format.</p> <p>How can I save an image in EXIF format using .NET 3.5?</p> http://stackoverflow.com/questions/1116711/what-are-the-silverlight-3-alternatives-to-dynamicresource-and-element-based-brus 0 What are the Silverlight 3 alternatives to DynamicResource and Element-based Brushes? RoguePlanetoid 2009-07-12T19:31:06Z 2009-07-13T10:22:20Z <p>I need to have a custom UI element that can be changed, such as the colour and text used in the application but as a resource - in WPF I can use a DynamicResource to assign brushes, strings etc, however I need to implement this in Silverlight 3 - how can I do this as a StaticResource will not do, and as another question I have a resource which is made of other UI-Elements like Rectangles. See example from my existing ResourceDictionary: </p> <pre><code> &lt;VisualBrush x:Key="Device" Stretch="Uniform"&gt; &lt;VisualBrush.Visual&gt; &lt;Canvas Width="20" Height="36"&gt; &lt;Rectangle Height="36" Width="20" Fill="{DynamicResource ZuneColour}" Canvas.Left="0" Canvas.Top="0" RadiusX="1" RadiusY="1"&gt; &lt;Rectangle.BitmapEffect&gt; &lt;OuterGlowBitmapEffect GlowColor="Black" GlowSize="2" /&gt; &lt;/Rectangle.BitmapEffect&gt; &lt;/Rectangle&gt; &lt;Rectangle Fill="{DynamicResource ZuneScreen}" Canvas.Left="1" Canvas.Top="1" Height="24" Stroke="#191616" Width="18"/&gt; &lt;Rectangle Canvas.Left="5.5" Canvas.Top="25" Height="9" Width="9" RadiusX="3" RadiusY="3" Fill="{DynamicResource ZunePad}" Stroke="{DynamicResource ZunePadOuter}"/&gt; &lt;/Canvas&gt; &lt;/VisualBrush.Visual&gt; &lt;/VisualBrush&gt; </code></pre> <p>I have also had an issue with replicating the OuterGlowEffect, but at least this can be done with a compiled DirectX effect so can leave this out if needed.</p> <p><hr /></p> <p>I think Data Bindings will be a good solution to dynamic content as can create a Class which stores the visual data I need and this can be a One-way binding to update the UI - hopefully this may be useful to others with the same issue.<br /> Still need to replace VisualBrush functionality with something that will work in Silverlight for the given example.</p> http://stackoverflow.com/questions/797721/getting-color-image-from-bitmap-while-image-is-16bppgrayscale 2 Getting color image from bitmap while image is 16bppGrayscale prashant 2009-04-28T12:48:15Z 2009-07-02T10:32:13Z <p>Hi,</p> <p>Problem No1. <a href="http://stackoverflow.com/questions/797659/how-apply-color-lut-over-bitmap-image-in-c">My own Related problem</a></p> <p>I asked the next question here</p> <p>Now the Problem No 2 is.</p> <p>When i am trying to open 16 Bit (Monocrome ) images from their raw pixel data then i am getting Error. Because i am using PixelFormat.Format16bppGrayscale on creation of Bitmap like</p> <pre><code>Bitmap bmp = new Bitmap(Img_Width, Img_Height,PixelFormat.Format16bppGrayscale); </code></pre> <p>So googled and found Format16bppGrayscale not supported so i modifed my code like below.</p> <pre><code> PixelFormat format = PixelFormat.Format16bppRgb565; Bitmap bmp = new Bitmap(Img_Width, Img_Height, format); Rectangle rect = new Rectangle(0, 0, Img_Width, Img_Height); BitmapData bmpData = bmp.LockBits(rect, ImageLockMode.ReadWrite, format); Marshal.Copy(rawPixel, 0, bmpData.Scan0, rawPixel.Length); bmp.UnlockBits(bmpData); </code></pre> <p>Amazing thing is that i am getting the image now because i change the pixelFormat. But problem is that My monocrome (Grayscale) image look in various color.</p> <p>How can i get the original appearance. I tried several grayscale method but not successful Please give me some unsafe code. Thanks,</p> http://stackoverflow.com/questions/476084/c-twain-interaction 1 C# TWAIN interaction Valentin Vasilyev 2009-01-24T14:30:21Z 2009-06-22T12:04:53Z <p>Hello,</p> <p>I'm trying to set up a C# application which uses TWAIN example from <a href="http://www.codeproject.com/KB/dotnet/twaindotnet.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/twaindotnet.aspx</a></p> <p>This works fine except that I need to cast Form to <code>IMessageFilter</code> and call </p> <p><code>IMessageFilter.PreFilterMessage()</code></p> <p>to catch TWAIN callbacks. Also I need to start this filtering by calling</p> <pre><code>Application.AddMessageFilter(); </code></pre> <p>Is there a way to do same thing in WPF Window? (To add message filter and catch TWAIN callbacks).</p> <p>Another totally high level question: Does anybody know about alternative C# TWAIN libraries\wrappers?</p> <p>Thank you.</p> http://stackoverflow.com/questions/899001/combine-two-images-with-one-being-transparent 0 Combine two images with one being transparent Eric 2009-05-22T17:27:16Z 2009-05-22T21:42:34Z <p>I have two bitmap images. One contains a picture taken with a usb camera. The other will contain a shape, like a rectagle, but it can also be a trapezoid, or lets say, a random shape with only one color in it. The rest of the image is white right now.</p> <p>The two images aren't of the same size but scaling algorithms aren't the most difficult part here, so lets assume they are of the exact same dimensions.</p> <p>I want to show my shape on the usb camera picture. The white part will be considered as transparent for the combinaison purpose. Right now I'm thinking of editing the image pixels by pixels, but I'm searching for an API which will do it for me.</p> <p>So if I take a picture with a house in the middle of it and overlay a red rectagle, the resulting image will have the original picture with a red rectangle around the house.</p> <p>I'm using .NET if this can help. I could also use win32 API if it contains some useful functions.</p> <p>Edit : I accepted the answer since it put me on the right track. This is actually super easy to do.</p> <pre><code>Bitmap^ overlay_image = gcnew Bitmap("overlay.bmp"); Bitmap^ original_image = gcnew Bitmap("original.bmp"); overlay_image-&gt;MakeTransparent(Color::White); Graphics^ g_original = Graphics::FromImage(original_image); g_original-&gt;DrawImage(overlay_image, 0, 0); </code></pre> <p>Voilà, <code>original_image</code> now has a red rectangle over it. It is actually fast enough for my 30fps usb camera so I can get it in real time.</p> <p>There is no scaling done right now. Also, it assumes that the overlay image background is white, which will be made transparent.</p> http://stackoverflow.com/questions/713685/how-does-silverlight-deep-zoom-work-behind-the-scenes 1 how does silverlight deep zoom work behind the scenes Raj 2009-04-03T12:18:08Z 2009-05-04T09:53:13Z <p>hey guys i have done few sample projects (just for fun) using silverlight deep zoom. its really cool and exciting stuff. but i was curious to know about what goes on behind the scenes to achieve this sort of thing. the deep zoom composer generates many images and few xml files within sub folders of its data source.</p> <p>can anyone explain how exactly all this stuff is working. what concepts are being used to achieve this</p> <p>thnx in advance</p> http://stackoverflow.com/questions/797659/how-apply-color-lut-over-bitmap-image-in-c 0 How apply Color Lut over bitmap image in c# prashant 2009-04-28T12:33:05Z 2009-04-30T05:59:29Z <p>Hi,</p> <p>I am opening different types of images like (8 and 16 bit) and they are (Monocrome, RGB ,palette color).</p> <p>I have raw pixel data of these images. I create bitmap like this for 8 bit images.</p> <pre><code> //for monocrome images i am passing PixelFormat.Format8bppIndexed. //for RGB images i am passing PixelFormat.Format24bppRgb PixelFormat format = PixelFormat.Format8bppIndexed; Bitmap bmp = new Bitmap(Img_Width, Img_Height,format); Rectangle rect = new Rectangle(0, 0, Img_Width, Img_Height); //locking the bitmap on memory BitmapData bmpData = bmp.LockBits(rect, ImageLockMode.ReadWrite, format); // copy the managed byte array to the bitmap's image data Marshal.Copy(rawPixel, 0, bmpData.Scan0, rawPixel.Length); bmp.UnlockBits(bmpData); </code></pre> <p><hr /></p> <p>The problem is that when i draw that bmp image then it differs in color than original. So is there any way to apply lut (lookup table) on that colored images.</p> <p>i want any unsafe code because i tried getixel and setPixel and they are very slow. I also dont want Image.fromSource() methods.</p> http://stackoverflow.com/questions/245447/how-do-i-draw-text-at-an-angle-using-pythons-pil 4 How do I draw text at an angle using python's PIL? carrier 2008-10-29T01:04:48Z 2009-04-12T10:48:23Z <p>Using Python I want to be able to draw text at different angles using PIL.</p> <p>For example, imagine you were drawing the number around the face of a clock. The number <strong>3</strong> would appear as expected whereas <strong>12</strong> would we drawn rotated counter-clockwise 90 degrees.</p> <p>Therefore, I need to be able to draw many different strings at many different angles.</p> http://stackoverflow.com/questions/668318/image-resize-c-vb-net-opensource-library 1 Image Resize C#,VB.NET Opensource Library thya 2009-03-20T23:10:10Z 2009-03-20T23:20:09Z <p>Any one point me on good direction on how to resize a jpg image to exactly particular size (Both File size and pixel size Ex. 148 x 72 px , 300 KB ). </p> <p>To Acheive this, Quality of images can be adjusted.</p> <p>It may a .NET library /code but it should be free for commercial use / open source.</p> <p>I want it in either C# or VB.NET as library.</p> http://stackoverflow.com/questions/638429/best-languages-frameworks-for-imaging-linux-app 0 Best languages/frameworks for imaging Linux app Ernesto 2009-03-12T12:37:05Z 2009-03-12T13:24:09Z <p>Hello all. I'm looking for the best tool/language/library/framework to develop a document scanning/imaging/indexing application that must run on KDE/Linux. The application must provide the following functionality:</p> <p>1) Document scanning (simple and multipage) in B/W, save the scanned images in TIFF format with CCITT Group 4 compression.</p> <p>2) Allow the operator to view/browse/zoom the document in a window, and manually enter index information on a predefined dialog box (5-6 fields max).</p> <p>3) Generate an XML file with the index metadata, then upload both the TIFF and XML files to an FTP server for further processing.</p> <p>Any help will be greatly appreciated.</p> <p>Ernesto.</p> http://stackoverflow.com/questions/619618/using-pixel-fonts-in-pil 3 Using pixel fonts in PIL Vince 2009-03-06T17:05:11Z 2009-03-06T18:31:15Z <p>Hi,</p> <p>I am creating images using PIL that contain numerous exactly placed text strings. My first attempt was to convert pixel fonts into the pil-compatible format as described <a href="http://llbb.wordpress.com/2006/11/24/making-pil-font-for-python-image-library/" rel="nofollow">here</a>. For example, I download the Silksreen font and convert it:</p> <pre><code>otf2bdf -p 8pt -o fonts/slkscr.bdf fonts/slkscr.ttf pilfont.py fonts/slkscr.bdf </code></pre> <p>I can then use the font in PIL like so:</p> <pre><code>import Image, ImageDraw, os, sys, ImageFont im = Image.new("RGB", (40,10)) draw = ImageDraw.Draw(im) fn = ImageFont.load('fonts/slkscr.pil') draw.text((0,0), "Hello", font=fn) del draw # write to stdout im.save(sys.stdout, "PNG") </code></pre> <p>However, the resulting image (<img src="http://img220.imageshack.us/img220/4481/testi.png" alt="alt text" />) does not reflect what the font <a href="http://kottke.org/plus/type/silkscreen/" rel="nofollow">should look like</a>.</p> <p>What procedure should I be using to convert and use pixel fonts so that they render as intended?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/541331/effective-way-of-making-negative-of-image-without-external-dlls 1 Effective way of making negative of image without external dlls tomaszs 2009-02-12T13:53:54Z 2009-02-18T15:53:35Z <p>Hello,</p> <p>That is the solution to make a negative from a image in C# Windows Forms without any dlls and in a effective, fast way?</p> http://stackoverflow.com/questions/551841/quick-creation-of-fresh-os-install-for-software-testing 5 Quick creation of fresh OS install for software testing Abdullah Jibaly 2009-02-15T23:34:36Z 2009-02-16T10:25:36Z <p>What do you recommend for quickly creating images for testing a software product (that needs hardware access - full USB port access)? Does virtualization cover this? I need to be able to quickly re-image the system to test from scratch again, and need good options for Windows and Mac OS.</p>