I have read the README.

Except for

A = reinterpret(Uint8, data(img))

I don't see anything that solves my problem.  Perhaps I just don't 
understand what the READMEis saying.  

Right now, I am manually converting the image using
for y in 1:hi
  for x in 1:wi
    c = d[x,y]
    i = reinterpret(Uint8,c.b)<<0 + reinterpret(Uint8,c.g)<<8 + reinterpret(
Uint8,c.r)<<16
    app.workingimage.imgbuf[y,x] = uint32( i)
  end
end

I don't know enough Julia to make the map!() work, but I think it would be 
best so that when I loaded the image it was already in 
Array{ARGB{UfixedBase{Uint8,8}},2} or Uint32 format.  Afterwards 
reinterpret(ARGB32,image) should do what I need.

Reply via email to