使用pyBarcode将数字定位在条形码下方

时间:2011-07-06 22:49:00

标签: python django

我正在使用pyBarcode来生成PNG,条形码下面的数字会在右侧被截断。如何轻推几个像素?

the number is getting cut off

根据the documentation我需要做这样的事情:

barcode.writer.BaseWriter(paint_text=my_callback)

并定义一个这样的回调:

my_callback(xpos, ypos)

use self.text as text

我究竟如何将所有这些应用到我的Django视图(下面)?

def barcode(request):
    import barcode
    from barcode.writer import ImageWriter
    from cStringIO import StringIO

    def mm2px(mm, dpi=300):
        return (mm * dpi) / 25.4

    class MyImageWriter(ImageWriter):
        def calculate_size(self, modules_per_line, number_of_lines, dpi=300):
            width = 2 * self.quiet_zone + modules_per_line * self.module_width
            height = 1.0 + self.module_height * number_of_lines
            if self.text:
                height += (self.font_size + self.text_distance) / 3

            return int(mm2px(width, dpi)), int(mm2px(height, dpi))

    f = BarcodeForm(request.GET)
    if f.is_valid():
        try:
            i = StringIO()
            bc_factory = barcode.get_barcode_class(f.PYBARCODE_TYPE[f.cleaned_data['barcode_type']])
            bc_factory.default_writer_options['quiet_zone'] = 1.0
            bc_factory.default_writer_options['text_distance'] = 1.0
            bc_factory.default_writer_options['module_height'] = 15.0
            bc_factory.default_writer_options['module_width'] = 0.3
            bc_factory.default_writer_options['font_size'] = 46

            bc = bc_factory(f.cleaned_data['text'], writer=MyImageWriter())
            bc.write(i)
            return HttpResponse(i.getvalue(), mimetype='image/png')
        except Exception, e:
            return HttpResponseBadRequest(str(e))
    else:
        return HttpResponseBadRequest('Missing text or unsupported barcode type: %s' % f.errors)

1 个答案:

答案 0 :(得分:1)

编辑:回答后,我发现你有一家工厂正在设置quiet_zone1.0。将其更改回6.5,我想它看起来会很好。

Edit2:我误解了你遇到的确切问题。

无论出于何种原因,pyBarcode的作者都将文本置于条形码中间。当render方法调用_paint_text()时,它会传入xpos/2,将其设置在条形码的中间。我想这可以使用他使用的默认字体,但是当你增加字体时,它就不再合适了。

相反,我可以通过覆盖_paint_text()方法将其放在左侧。在下面的最后一行中,变量pos只是一个包含(x,y)坐标的元组,它告诉PIL在条形码上绘制文本的位置。所以我确保x与条形码对齐。如果您需要将其右对齐,可以使用xpos变量来获取它所需的位置。

试一试:

class MyImageWriter(ImageWriter):
    def calculate_size(self, modules_per_line, number_of_lines, dpi=300):
        width = 2 * self.quiet_zone + modules_per_line * self.module_width
        height = 1.0 + self.module_height * number_of_lines
        if self.text:
            height += (self.font_size + self.text_distance) / 3

        return int(mm2px(width, dpi)), int(mm2px(height, dpi))

    def _paint_text(self, xpos, ypos):
        # this should align your font to the left side of the bar code:
        xpos = self.quiet_zone
        pos = (mm2px(xpos, self.dpi), mm2px(ypos, self.dpi))
        font = ImageFont.truetype(FONT, self.font_size)
        self._draw.text(pos, self.text, font=font, fill=self.foreground)