Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーに保存せずに画像のサイズを変更する方法を探しています。私が見つけた方法には、コントローラーファイルなどが含まれます。
ストリームから画像を取得し、サイズを変更して応答に追加する方法はありますか?
これはお勧めしませんが、次のことができます。
using (Image img = Image.FromStream(originalImage)) { using (Bitmap bitmap = new Bitmap(img, width, height)) { bitmap.Save(outputStream, ImageFormat.Jpeg); } }
これにより、OutOfMemoryException が発生する可能性があることに注意してください。