我正在使用Rails 5.2,我正在尝试调整存储在活动存储中的png文件的大小,如下所示
def thumbnail return self.image_png.variant(resize: '120x120').processed end
然后,图像被转换为jpg格式,并失去透明度。你知道如何保持图像为透明背景的png吗?
https://stackoverflow.com/questions/51412328
相似问题