mrRay/vvopensource

Images with DPI > 72

Closed this issue · 3 comments

I'm not sure if this is intentional behaviour, but when calling
VVBufferPool.globalVVBufferPool().allocBufferForNSImage(myImage)
if the image passed in is higher in DPI than 72, the returned buffer is lower resolution than the original.

Try loading the following image into ISF Editor, and you will see what I mean.
512

Many thanks for the great frameworks :)

Just an update, I'm currently working around this by calling CGImageForProposedRect:context:hints: on NSImage and then creating the buffer with allocBufferForCGImageRef: instead, which is returning the correct sized buffer.

mrRay commented

i don't remember if it's the intentional behavior, but it sure seems like a bug right now- thanks for reporting this, commit 9a4789b should address it!

Fab, that's done the trick :)