هذا حل احترافي لضغط HTML باستخدام Java. استخدم HTML واجهة برمجة تطبيقات التحسين الخاصة بنا لإنشاء برامج محمولة وقوية وآمنة في جافا. جربه على الإنترنت مجانا!
اجعل ملفات HTML الكبيرة أصغر دون فقدان الجودة. احذف البيانات غير الضرورية وغير المستخدمة. تقليص حجم ملف HTML في التعليمات البرمجية. توفر مكتبة Java للمطورين واجهة برمجة تطبيقات متكاملة لتحسين محتوى HTML.
تعد مكتبة Java حلاً قائمًا بذاته ولا يتطلب تثبيت أي برنامج تابع لجهة خارجية.
أصبح الضغط بلا خسائر وتحسين المحتوى العميق أمرًا سهلاً باستخدام 'Aspose.Words for Java'. يوضح المثال التالي كيفية تحسين محتوى ملف HTML Java:
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
ينسخ
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
ينسخ
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
ينسخ
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
ينسخ
import com.aspose.words.*;
Document doc = new Document("Input.html");
doc.cleanup();
NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) nodes)
{
if (shape.isImage)
{
// الأمر متروك للمطور لاختيار المكتبة لضغط الصور.
BufferedImage image = ImageIO.read(shape.getImageData().toStream());
// ...
// ضغط الصورة وإعادتها إلى الشكل.
shape.getImageData().setImage("yourCompressedImage");
}
}
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.html");
doc.cleanup();
NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) nodes)
{
if (shape.isImage())
{
// الأمر متروك للمطور لاختيار المكتبة لضغط الصور.
BufferedImage image = ImageIO.read(shape.getImageData().toStream());
// ...
// ضغط الصورة وإعادتها إلى الشكل.
shape.getImageData().setImage("yourCompressedImage");
}
}
OoxmlSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setCacheBackgroundGraphics(true);
doc.save("Output.html", saveOptions);
import com.aspose.words.*;
Document doc = new Document("Input.html");
doc.cleanup();
NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) nodes)
{
if (shape.isImage)
{
// الأمر متروك للمطور لاختيار المكتبة لضغط الصور.
BufferedImage image = ImageIO.read(shape.getImageData().toStream());
// ...
// ضغط الصورة وإعادتها إلى الشكل.
shape.getImageData().setImage("yourCompressedImage");
}
}
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.html");
doc.cleanup();
NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) nodes)
{
if (shape.isImage())
{
// الأمر متروك للمطور لاختيار المكتبة لضغط الصور.
BufferedImage image = ImageIO.read(shape.getImageData().toStream());
// ...
// ضغط الصورة وإعادتها إلى الشكل.
shape.getImageData().setImage("yourCompressedImage");
}
}
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions();
saveOptions.setCompressionLevel(CompressionLevel.MAXIMUM);
doc.save("Output.html", saveOptions);
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.html");
ImageSaveOptions saveOptions = new ImageSaveOptions(SaveFormat.HTML);
shape.getShapeRenderer().save("Output.html", saveOptions);
نستضيف حزم Java بنا في مستودعات Maven. 'Aspose.Words for Java' هو JAR شائع يحتوي على كود بايت. يرجى اتباع التعليمات خطوة بخطوة حول كيفية تثبيته في بيئة مطور Java لديك.
Java SE 7 Java الأحدث. نوفر أيضًا حزمة منفصلة لـ Java SE 6 في حال كنت ملزمًا باستخدام JRE القديم هذا.
Java الخاصة بنا متعددة المنصات وتعمل على جميع أنظمة التشغيل مع JVM، بما في ذلك Microsoft Windows و Linux و macOS و Android و iOS.
للحصول على معلومات حول تبعيات الحزمة الاختيارية، مثل JogAmp JOGL، محرك خط Harfbuzz Java Advanced Imaging JAI، يرجى الرجوع إلى وثائق المنتج.