On Thu, May 16, 2013 at 3:55 PM, <
darkte...@gmail.com> wrote:
> when I run:
>>
>> resize.Resize(srcimg2, image.Rect(0, 0, 100,100), 3000, 3000)
>
> It goes OK.
>
> when I run:
>>
>> resize.Resize(srcimg2, image.Rect(1, 1, 200, 200), 3000, 3000)
>
> It panic,
If you import "fmt" and "os" and add
fmt.Fprintf(os.Stderr, "\n\n\nsrcimg2 has type %T and bounds
%v\n\n\n", srcimg2, srcimg2.Bounds())
then you should see some debug information in the console where you
run your dev_appserver. Can you copy/paste that output here?