Opened 7 years ago

Last modified 7 years ago

#13584 new bug

BBitmap::ImportBits misses edge pixels

Reported by: Pete Owned by: nobody
Priority: normal Milestone: Unscheduled
Component: Kits/Interface Kit Version: R1/Development
Keywords: Cc:
Blocked By: Blocking:
Platform: All

Description

The ImportBits method misses the rightmost column, and bottommost row, of a source bitmap. ArtPaint currently uses this to import all images into its display (loading a file, pasting a clip, etc.) and the result is always missing the right and bottom sets of pixels. (Originally it did the operation itself explicitly, and that works. For now, I've restored its original scheme.)

For reference, here's the code it uses:

			fLayerData->ImportBits(bitmap, BPoint(B_ORIGIN), BPoint(B_ORIGIN),
				int32(min_c(frame.Width(), sourceRect.Width())),
				int32(min_c(frame.Height(), sourceRect.Height())));

(I guess enclosing B_ORIGIN in a BPoint is superfluous(!), but shouldn't affect things.)

Attachments (2)

aptest.png (107 bytes ) - added by Pete 7 years ago.
example original 16x16 pixel image
aptest_IB.png (109 bytes ) - added by Pete 7 years ago.
same image after loading and resaving using ImportBits

Download all attachments as: .zip

Change History (5)

by Pete, 7 years ago

Attachment: aptest.png added

example original 16x16 pixel image

by Pete, 7 years ago

Attachment: aptest_IB.png added

same image after loading and resaving using ImportBits

comment:2 by Pete, 7 years ago

Dunno why it "Has a Patch set"... Didn't intend to click that (and I don't think I did)! No way to remove the tag.

comment:3 by pulkomandy, 7 years ago

"has a patch" is a trac bug.

You do need a +1 on rectangle width and height if you want a pixel count. This is a known "feature" of the BeAPI. See https://www.haiku-os.org/legacy-docs/bebook/TheInterfaceKit_The_Coordinate_Space.html for details about this.

comment:4 by Pete, 7 years ago

Urk... I should have remembered that! (Though actually not -- that I can see -- detailed in the Coordinate Space section, only in the preamble to BRect, and implicit in the Width()/Height() descriptions themselves.)

However, I think the parameters in the Bitmap.h header are misleading:

	status_t	ImportBits(const BBitmap* bitmap, BPoint from,
				BPoint to, int32 width, int32 height);

Using "width" and "height" obviously fooled both Julun (the original author) and me in the same way! Maybe "pixelwidth" and "pixelheight"?

Note: See TracTickets for help on using tickets.