How does google app engine manipulate image data? How can you manipulate pixel data?
问题 I want to get access to the low level pixel data to complete signal processing algorithms using GAE (which elimiated the use of BufferedImages and Java.awt.image classes) You can access the Image data by: ImagesService imagesService = ImagesServiceFactory.getImagesService(); Image oldImage = ImagesServiceFactory.makeImageFromBlob(blobKey); byte[] imageData = oldImage.getImageData(); So here is the issue: Color Images have 4 Bands (aRGB) but when you get the Image Data its a 1D byte array. 1)