GMImagePicker icon indicating copy to clipboard operation
GMImagePicker copied to clipboard

Photo gallery issue

Open nithinbemitk opened this issue 6 years ago • 1 comments

Hi, While displaying the images from camera roll only few images are showing and the others are blank(white background) and the scrolling is enabled.

screen shot 2017-12-22 at 11 03 05 am

nithinbemitk avatar Dec 22 '17 05:12 nithinbemitk

In GMGridViewController.m add this line:

    if(scale >= 3)
    {
        scale = 2;
    }

Before :

    AssetGridThumbnailSize = CGSizeMake(layout.itemSize.width * scale, layout.itemSize.height * scale);

To decrease Thumbnail size.

Thanks.

abbas-mulani avatar Mar 01 '18 14:03 abbas-mulani