fbpx
< 戻る
印刷

画像の拡大縮小

どんな処理ができますか?

画像の拡大縮小は、指定された倍率で画像のサイズを変更します。デフォルトのスケーリングオプションは AffineTransformOp.TYPE_BILINEAR です。

JavaでBufferedImageを使った拡大縮小処理

				
					ImageProcessingOperations operations = new ImageProcessingOperations();

// ここでは、スケール、ぼかしなど、いくつかの操作を連鎖させることができます。
operations.scale(1.2);  // この場合、AffineTransformOp.TYPE_BLINEARが使用されます
 //operations.scale(scalingFactor, AffineTransformOp.TYPE_BICUBIC); //AffineTransformOp.VALUE
 
// BufferedImageへの操作の適用
BufferedImage modifiedImage = operations.apply(BufferedImage originalImage);
				
			

拡大縮小操作に関するJavadocを見る

その他のコード例

以下のコード例を使用して、画像フォーマットを処理および変換します:

Fileの使用
				
					File inputFile = new File("path/to/file");
File outputFile = new File("path/to/output-blurred-file");
JDeli.convert(inputFile, outputFile, operations);
				
			
InputStreamとOutputStreamの使用
				
					final InputStream inputStream = new FileInputStream(inputFile);
final OutputStream outputStream = new FileOutputStream(outputFile);
final String outputFormat = "format"; // 出力ファイルの形式(例:png、jpeg、...;
JDeli.convert(inputStream, outputStream, outputFormat, operations);
				
			
byte[]の使用
				
					byte[] inputData = Files.readAllBytes(Paths.get("/path/to/file"));
final String outputFormat = "format"; // 出力ファイルの形式(例:png、jpeg、...;
byte[] outputData = JDeli.convert(inputData, outputFormat, operations);
				
			
    MENU
    PAGE TOP